Added more tests

This commit is contained in:
Eduard Urbach 2025-02-28 19:52:21 +01:00
parent be6eafddf5
commit c1427eb7f6
Signed by: akyoto
GPG Key ID: C874F672B1AF20C0

View File

@ -13,6 +13,11 @@ main() {
assert total == 0
for i := total..10 {
assert i >= 0
assert i < 10
}
for i := 0..10 {
assert i >= 0
assert i < 10
@ -24,5 +29,5 @@ main() {
total += 1
}
assert total == ten
assert total == 10
}