RosettaCodeData/Task/Jump-anywhere/Common-Lisp/jump-anywhere.lisp
2023-07-01 13:44:08 -04:00

13 lines
241 B
Common Lisp

(tagbody
beginning
(format t "I am in the beginning~%")
(sleep 1)
(go end)
middle
(format t "I am in the middle~%")
(sleep 1)
(go beginning)
end
(format t "I am in the end~%")
(sleep 1)
(go middle))