Skip to content

Commit d4460d4

Browse files
committed
Training script
1 parent 7599d27 commit d4460d4

File tree

3 files changed

+2
-1
lines changed

3 files changed

+2
-1
lines changed

build.zig

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ pub fn build(b: *std.Build) void {
3434
// only contains e.g. external object files, you can make this `null`.
3535
// In this case the main source file is merely a path, however, in more
3636
// complicated build scripts, this could be a generated file.
37-
.root_source_file = b.path("src/main.zig"),
37+
.root_source_file = b.path("train.zig"),
3838
.target = target,
3939
.optimize = optimize,
4040
});

src/root.zig

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
//! By convention, root.zig is the root source file when making a library. If
22
//! you are making an executable, the convention is to delete this file and
33
//! start with main.zig instead.
4+
45
const std = @import("std");
56
const testing = std.testing;
67
pub const engine = @import("engine.zig");
File renamed without changes.

0 commit comments

Comments
 (0)