21 lines
452 B
Plaintext

module: Main
function: main
parameter:
return_type: int
body:
declare b1: boolean = true
loop:
initializer:
declare i:int = 0
condition:
b1
update:
i = i + 1
body:
end body
end loop
return 0
end body
end function
end module