RosettaCodeData/Task/Nested-function/PicoLisp/nested-function.l

8 lines
178 B
Text
Raw Permalink Normal View History

2023-07-01 11:58:00 -04:00
(de makeList (Sep)
(let (Cnt 0 makeItem '((Str) (prinl (inc 'Cnt) Sep Str)))
(makeItem "first")
(makeItem "second")
(makeItem "third") ) )
(makeList ". ")