blob: 5e9def87ad43ae4d0e1d8fdd09a57ffc335a5691 (
plain)
1
2
3
4
5
6
7
8
|
const std = @import("std");
var stdout_writer = std.fs.File.stdout().writerStreaming(&.{});
const stdout = &stdout_writer.interface;
pub fn main() !void {
try stdout.print("$ ", .{});
}
|