Files
rlox/essai.lox

5 lines
49 B
Plaintext

var l=3;
while(l>0) {
print l;
l = l-1;
}