mirror of
https://github.com/epasveer/seer.git
synced 2026-08-31 01:20:45 +08:00
3a0aecd81e
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.
6 lines
98 B
Zig
6 lines
98 B
Zig
const std = @import("std");
|
|
|
|
pub fn main() !void {
|
|
std.debug.print("Hello, World!\n", .{});
|
|
}
|