mirror of
https://codeberg.org/ziglang/zig.git
synced 2025-12-06 13:54:21 +00:00
11 lines
169 B
Zig
11 lines
169 B
Zig
const expect = @import("std").testing.expect;
|
|
|
|
test "while basic" {
|
|
var i: usize = 0;
|
|
while (i < 10) {
|
|
i += 1;
|
|
}
|
|
try expect(i == 10);
|
|
}
|
|
|
|
// test
|