5c40f793a1
Add support for proper relative imports
16 lines
268 B
Python
16 lines
268 B
Python
from hy.macros import macro
|
|
from hy import HyList, HyInteger
|
|
|
|
|
|
SECRET_MESSAGE = "Hello World"
|
|
|
|
|
|
@macro("qplah")
|
|
def tmac(ETname, *tree):
|
|
return HyList((HyInteger(8), ) + tree)
|
|
|
|
|
|
@macro("parald")
|
|
def tmac2(ETname, *tree):
|
|
return HyList((HyInteger(9), ) + tree)
|