advent-of-code/2021/6.zig

8 lines
179 B
Zig
Raw Normal View History

2021-12-06 11:39:34 -06:00
const std = @import("std");
// TODO: solution to day 6
pub fn main() !void {
const stdout = std.io.getStdOut().writer();
try stdout.print("Hello, {s}!\n", .{"world"});
}