Implemented loop iterators

This commit is contained in:
Eduard Urbach 2025-02-19 17:52:15 +01:00
parent 1bc845e6f0
commit 7922cff7ba
No known key found for this signature in database
GPG key ID: C874F672B1AF20C0
17 changed files with 147 additions and 35 deletions

View file

@ -1,11 +0,0 @@
main() {
n := 10
loop {
if n == 0 {
return
}
n -= 1
}
}