blob: 37d4949a26e735e0aa81d50f2f76a73ab7c0713d (
plain)
1
2
3
4
5
6
7
8
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("$ ", .{});
}
|