This commit is contained in:
2022-03-31 21:23:57 +02:00
parent 7c3e5aaefa
commit d266ac400e
33 changed files with 1719 additions and 0 deletions

View File

@@ -0,0 +1,11 @@
// check parsing of do-while loop
func main()
begin
var i
i := 2
while i < 42 do
i := i * i
print i
return 0
end