Added more tests

This commit is contained in:
Eduard Urbach 2025-02-28 19:52:21 +01:00
parent 6fef3bccf6
commit 485efe5727
Signed by: eduard
GPG key ID: 49226B848C78F6C8

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
}