mirror of
https://codeberg.org/ziglang/zig.git
synced 2025-12-06 05:44:20 +00:00
* `doc/langref` formatting
* upgrade `.{ .path = "..." }` to `b.path("...")`
* avoid using arguments named `self`
* make `Build.Step.Id` usage more consistent
* add `Build.pathResolve`
* use `pathJoin` and `pathResolve` everywhere
* make sure `Build.LazyPath.getPath2` returns an absolute path
21 lines
423 B
Zig
21 lines
423 B
Zig
const expect = @import("std").testing.expect;
|
|
|
|
test "while loop continue expression" {
|
|
var i: usize = 0;
|
|
while (i < 10) : (i += 1) {}
|
|
try expect(i == 10);
|
|
}
|
|
|
|
test "while loop continue expression, more complicated" {
|
|
var i: usize = 1;
|
|
var j: usize = 1;
|
|
while (i * j < 2000) : ({
|
|
i *= 2;
|
|
j *= 3;
|
|
}) {
|
|
const my_ij = i * j;
|
|
try expect(my_ij < 2000);
|
|
}
|
|
}
|
|
|
|
// test
|