8 lines
118 B
Text
8 lines
118 B
Text
|
|
loopexample=: verb define
|
||
|
|
while. 1 do.
|
||
|
|
smoutput n=. ?20
|
||
|
|
if. 10=n do. return. end.
|
||
|
|
smoutput ?20
|
||
|
|
end.
|
||
|
|
)
|