2025-07-28 18:01:06 +08:00

24 lines
529 B
Plaintext

module: Main
import: os
function: main
return_type: int
body:
loop:
init:
declare i:int = 1
cond:
i <= 10
step:
i = i + 1
body:
if i % 2 == 0 then
print(i)
break
end if
end body
end loop
return 0
end body
end function
end module