mirror of
https://github.com/ziglang/zig.git
synced 2024-11-28 16:12:33 +00:00
12 lines
189 B
Zig
12 lines
189 B
Zig
|
pub fn main() void {
|
||
|
var i: u64 = 0xFFEEDDCCBBAA9988;
|
||
|
assert(i == 0xFFEEDDCCBBAA9988);
|
||
|
}
|
||
|
|
||
|
pub fn assert(ok: bool) void {
|
||
|
if (!ok) unreachable; // assertion failure
|
||
|
}
|
||
|
|
||
|
// run
|
||
|
//
|