Files
seer/tests/hellozig/assignment.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

18 lines
222 B
Zig

const std = @import("std");
pub fn main() !void {
const c: bool = true;
var v: bool = false;
v = true;
const inferred = true;
var u: bool = undefined;
u = true;
_ = c;
_ = inferred;
}