From 73e43d71b7c935a6ea61149209085e06aba20ae4 Mon Sep 17 00:00:00 2001 From: Paul Tagliamonte Date: Sun, 16 Dec 2012 08:24:22 -0500 Subject: [PATCH] Interesting changes; starting work on ASTing the tree --- hy/emitters/ast27.py | 5 +++++ test.hy | 2 -- 2 files changed, 5 insertions(+), 2 deletions(-) create mode 100644 hy/emitters/ast27.py diff --git a/hy/emitters/ast27.py b/hy/emitters/ast27.py new file mode 100644 index 0000000..e2129f5 --- /dev/null +++ b/hy/emitters/ast27.py @@ -0,0 +1,5 @@ +# + + +def emit(tree): + pass diff --git a/test.hy b/test.hy index ae8005b..2ed227a 100644 --- a/test.hy +++ b/test.hy @@ -1,7 +1,5 @@ ; vim: tabstop=2 expandtab shiftwidth=2 softtabstop=2 filetype=lisp -(ns test) - (def square (fn [x] (* x x)))