mirror of
https://github.com/ziglang/zig.git
synced 2024-12-04 02:48:50 +00:00
6 lines
125 B
Zig
6 lines
125 B
Zig
const std = @import("std");
|
|
|
|
pub fn main() !void {
|
|
std.debug.print("All your {s} are belong to us.\n", .{"codebase"});
|
|
}
|