Fixed variable lifetime in loops
This commit is contained in:
parent
43a6e85929
commit
c2b42fe2ea
11 changed files with 90 additions and 18 deletions
11
tests/programs/loop.q
Normal file
11
tests/programs/loop.q
Normal file
|
@ -0,0 +1,11 @@
|
|||
main() {
|
||||
n := 10
|
||||
|
||||
loop {
|
||||
if n == 0 {
|
||||
return
|
||||
}
|
||||
|
||||
n -= 1
|
||||
}
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue