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