mirror of
https://github.com/ziglang/zig.git
synced 2026-03-15 07:41:40 +00:00
init-lib creates a working static library with tests, and init-exe creates a working hello world with a `run` target. both now have test coverage with the new "cli tests" file. closes #1035
6 lines
115 B
Zig
6 lines
115 B
Zig
const std = @import("std");
|
|
|
|
pub fn main() error!void {
|
|
std.debug.warn("All your base are belong to us.\n");
|
|
}
|