mirror of
https://github.com/ziglang/zig.git
synced 2024-11-27 07:32:44 +00:00
10 lines
115 B
Zig
10 lines
115 B
Zig
pub fn main() void {
|
|
var b: bool = true;
|
|
b = b and true;
|
|
if (!b) unreachable;
|
|
return;
|
|
}
|
|
|
|
// run
|
|
//
|