21 lines
453 B
Plaintext
21 lines
453 B
Plaintext
module: Main
|
|
function: main
|
|
parameter:
|
|
return_type: int
|
|
body:
|
|
declare b1: boolean = false
|
|
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 |