21 lines
438 B
Plaintext
21 lines
438 B
Plaintext
module: Main
|
|
function: main
|
|
parameter:
|
|
return_type: int
|
|
body:
|
|
declare b1: boolean = true
|
|
loop:
|
|
init:
|
|
declare i:int = 0
|
|
cond:
|
|
b1
|
|
step:
|
|
i = i + 1
|
|
body:
|
|
|
|
end body
|
|
end loop
|
|
return 0
|
|
end body
|
|
end function
|
|
end module |