mirror of
https://github.com/ziglang/zig.git
synced 2025-12-19 04:33:09 +00:00
* added simple test * Update lib/std/special/init-exe/build.zig Co-authored-by: Andrew Kelley <andrew@ziglang.org>
10 lines
190 B
Zig
10 lines
190 B
Zig
const std = @import("std");
|
|
|
|
pub fn main() anyerror!void {
|
|
std.log.info("All your codebase are belong to us.", .{});
|
|
}
|
|
|
|
test "basic test" {
|
|
try std.testing.expectEqual(10, 3 + 7);
|
|
}
|