scratch/2021-03-10/zig-hello/src/main.zig

7 lines
147 B
Zig

const std = @import("std");
pub fn main() anyerror!void {
const test_num = 5;
std.log.info("All your codebase are belong to us.", .{});
}