diff options
Diffstat (limited to 'src/main.zig')
| -rw-r--r-- | src/main.zig | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/src/main.zig b/src/main.zig new file mode 100644 index 0000000..37d4949 --- /dev/null +++ b/src/main.zig @@ -0,0 +1,9 @@ +const std = @import("std"); + +var stdout_writer = std.fs.File.stdout().writerStreaming(&.{}); +const stdout = &stdout_writer.interface; + +pub fn main() !void { + // TODO: Uncomment the code below to pass the first stage + // try stdout.print("$ ", .{}); +} |