RosettaCodeData/Task/Jump-anywhere/J/jump-anywhere-2.j
2015-11-18 06:14:39 +00:00

18 lines
170 B
Text

H=: verb define
smoutput 'a'
label_b.
smoutput 'c'
goto_f.
label_d.
smoutput 'e' return.
label_f.
smoutput 'g'
goto_d.
smoutput 'h'
)
H''
a
c
g
e