18 lines
304 B
Plaintext
18 lines
304 B
Plaintext
function: main
|
|
params:
|
|
returns: int
|
|
body:
|
|
loop:
|
|
init:
|
|
declare i:int = 0
|
|
cond:
|
|
1 == 1
|
|
step:
|
|
i = i + 1
|
|
body:
|
|
|
|
end body
|
|
end loop
|
|
return 0
|
|
end body
|
|
end function |