langatator/examples/while_demo.ltor
Matthieu Bessat c3af6bd5ca feat: add ascii and newline prints
fix(Evaluator): issue over variable reducing priority
2022-05-15 22:40:20 +02:00

7 lines
84 B
Text

set i to 0
while 1 do
if i > 10 then
break
end
set i to i+1
end