RosettaCodeData/Task/Named-parameters/PicoLisp/named-parameters-2.l

8 lines
248 B
Text
Raw Permalink Normal View History

2023-07-01 11:58:00 -04:00
(de foo @
(bind (next) # Save all symbols in first argument
(mapc set (arg) (rest)) # then bind them to remaining arguments
(println 'Bar 'is Bar)
(println 'Mumble 'is Mumble) ) )
(foo '(Bar Mumble) 123 "def")