master
 1const expect = @import("std").testing.expect;
 2
 3test "while basic" {
 4    var i: usize = 0;
 5    while (i < 10) {
 6        i += 1;
 7    }
 8    try expect(i == 10);
 9}
10
11// test