Nested function: Difference between revisions

Added PicoLisp
(Added PicoLisp)
Line 352:
echo makeList(". ");
?></lang>
 
=={{header|PicoLisp}}==
<lang PicoLisp>(de makeList (Sep)
(let (Cnt 0 makeItem '((Str) (prinl (inc 'Cnt) Sep Str)))
(makeItem "first")
(makeItem "second")
(makeItem "third") ) )
 
(makeList ". ")</lang>
 
=={{header|Python}}==
Anonymous user