hy/tests/resources/tlib.py
Nicolas Dandrimont 0986f9001e Change macros to be called with separate arguments
This provides free argument-length checking for macros.
2013-05-11 09:09:34 +02:00

8 lines
109 B
Python

from hy.macros import macro
from hy import HyList
@macro("qplah")
def tmac(*tree):
return HyList(tree)