8 lines
155 B
Zig
8 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 {
|
|
|
|
}
|