while statements (ch23)
This commit is contained in:
6
samples/ch23_while.lox
Normal file
6
samples/ch23_while.lox
Normal file
@ -0,0 +1,6 @@
|
||||
var i = 0;
|
||||
|
||||
while(i < 10) {
|
||||
print i;
|
||||
i = i + 1;
|
||||
}
|
Reference in New Issue
Block a user