Files
seer/tests/hellozig/hello-world.zig
T
Ernie Pasveer 3a0aecd81e Add a ZIG test program.
The zig compiler is way behing on opensuse.
I tried building zig from source but encountered many compile errors.

I'll wait until opensuse is updated.
2024-10-12 10:54:33 -05:00

6 lines
98 B
Zig

const std = @import("std");
pub fn main() !void {
std.debug.print("Hello, World!\n", .{});
}