4 lines
76 B
Text
4 lines
76 B
Text
|
|
(macro foo (...args) (print args))
|
||
|
|
(foo) # => []
|
||
|
|
(foo 1 2 3) # => [1 2 3]
|