rename example main program accordingly

This commit is contained in:
Emil Lerch 2023-08-01 15:56:18 -07:00
parent 59dc7a10bf
commit 39889f4269
Signed by: lobo
GPG Key ID: A7B62D657EF764F8
2 changed files with 1 additions and 1 deletions

View File

@ -10,7 +10,7 @@ pub fn build(b: *std.build.Builder) !void {
var exe = b.addExecutable(.{
.name = "custom",
.root_source_file = .{ .path = "src/main.zig" },
.root_source_file = .{ .path = "src/sample-main.zig" },
.target = target,
.optimize = optimize,
});