8 lines
112 B
Python
8 lines
112 B
Python
from hy.macros import macro
|
|
from hy import HyList
|
|
|
|
|
|
@macro("qplah")
|
|
def tmac(tree):
|
|
return HyList(tree[1:])
|