0986f9001e
This provides free argument-length checking for macros.
8 lines
109 B
Python
8 lines
109 B
Python
from hy.macros import macro
|
|
from hy import HyList
|
|
|
|
|
|
@macro("qplah")
|
|
def tmac(*tree):
|
|
return HyList(tree)
|