Files
seer/tests/hellozig/assignment.zig
T

18 lines
222 B
Zig
Raw Normal View History

2024-10-12 10:54:33 -05:00
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;
}