7 lines
248 B
Text
7 lines
248 B
Text
(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")
|