This commit is contained in:
Altagos 2024-11-14 13:10:09 +01:00
parent 1889eb00c4
commit 541348c1a6
Signed by: altagos
GPG key ID: 1C32F37FEBD6FBCB

12
src/days/day.zig Normal file
View file

@ -0,0 +1,12 @@
const std = @import("std");
const mem = std.mem;
pub fn run(alloc: mem.Allocator, progress: *std.Progress.Node) !void {
_ = alloc; // autofix
_ = progress; // autofix
}
test "day 00" {
const testing = std.testing;
_ = testing; // autofix
}