Luke e18d7426bc refactor: 重构死循环测试用例
- 将 initializer 改为 init
- 将 condition 改为 cond
- 将 update 改为 step
2025-07-14 23:46:51 +08:00

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