RosettaCodeData/Task/Loops-Nested/PicoLisp/loops-nested-2.l

6 lines
155 B
Text
Raw Permalink Normal View History

2023-07-01 11:58:00 -04:00
(catch NIL
(for Lst (make (do 10 (link (make (do 10 (link (rand 1 20)))))))
(for N Lst
(printsp N)
(and (= N 20) (throw)) ) ) )