Added until statement

This commit is contained in:
Gašper Dobrovoljc
2025-06-03 22:39:32 +02:00
parent 1b45d6a0f9
commit 018a80b0f7
5 changed files with 30 additions and 1 deletions

10
prg/test.pins25 Normal file
View File

@@ -0,0 +1,10 @@
var i = 0
fun main() =
until i >= 10 do
putint(i),
i = i + 1
end,
0
fun putint(n)