9 lines
155 B
Zig
9 lines
155 B
Zig
|
const std = @import("std");
|
||
|
const Allocator = std.mem.Allocator;
|
||
|
const assert = std.debug.assert;
|
||
|
const print = std.debug.print;
|
||
|
|
||
|
pub fn main() !void {
|
||
|
|
||
|
}
|