From 9776b7133ed1b0affe8e70c19cbee027a8914f76 Mon Sep 17 00:00:00 2001 From: Paul Tagliamonte Date: Sat, 27 Apr 2013 20:52:37 -0400 Subject: [PATCH] update readme --- README.md | 2 ++ bin/hy2py | 4 ++-- 2 files changed, 4 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index daabbcd..923f793 100644 --- a/README.md +++ b/README.md @@ -15,6 +15,8 @@ Hylarious Hacks [Python sh fun](https://twitter.com/paultag/status/314925996442796032) +[Hy IRC bot](https://github.com/hylang/hygdrop) + OK, so, why? ------------ diff --git a/bin/hy2py b/bin/hy2py index 20d6cf0..e8454e4 100755 --- a/bin/hy2py +++ b/bin/hy2py @@ -4,7 +4,7 @@ from __future__ import print_function from hy.importer import (import_file_to_ast, import_file_to_module, import_file_to_hst) -#import astor.codegen +import astor.codegen import sys import ast @@ -19,6 +19,6 @@ print("") print(ast.dump(_ast)) print("") print("") -#print(astor.codegen.to_source(_ast)) +print(astor.codegen.to_source(_ast)) import_file_to_module("", sys.argv[1])