4 lines
95 B
Text
4 lines
95 B
Text
loop xx = 1 to 10
|
|
if xx = 1 then leave -- loop terminated by leave
|
|
say 'unreachable'
|
|
end
|