template
This commit is contained in:
parent
1889eb00c4
commit
541348c1a6
1 changed files with 12 additions and 0 deletions
12
src/days/day.zig
Normal file
12
src/days/day.zig
Normal 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
|
||||
}
|
Loading…
Reference in a new issue