my solutions to advent of code
aoc advent-of-code
1const std = @import("std"); 2const raw_input = @embedFile("./input.txt"); 3 4pub fn main() !void { 5 std.debug.print("{s}", .{raw_input}); 6}