From f36fa0f6de11773beb4f8ed339d938d538159327 Mon Sep 17 00:00:00 2001 From: Paul Tagliamonte Date: Sun, 16 Dec 2012 16:40:27 -0500 Subject: [PATCH] lolawesome. --- test.py | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/test.py b/test.py index b290cd6..7749e62 100644 --- a/test.py +++ b/test.py @@ -5,7 +5,10 @@ from hy.lex.tokenize import tokenize m = forge_module( 'test', 'test.hy', - tokenize('(def two (fn [] (print (+ 1 1))))') + tokenize('(def two (fn [] (print (+ 1 1))))(def x 1)') ) print m.two +m.two() + +print m.x