From de50e9d7a8d65707fdba0c155a739c6d0e648d6e Mon Sep 17 00:00:00 2001 From: "Paul R. Tagliamonte" Date: Tue, 5 Mar 2013 21:44:26 -0500 Subject: [PATCH] shutting up the test file --- Makefile | 3 +++ tests/resources/importer/basic.hy | 3 ++- 2 files changed, 5 insertions(+), 1 deletion(-) diff --git a/Makefile b/Makefile index d3f9075..38fa379 100644 --- a/Makefile +++ b/Makefile @@ -6,6 +6,9 @@ all: @echo " - dev (test & flake)" @echo " - flake" @echo " - test" + @echo " - diff" + @echo " - d" + @echo " - r" @echo "" diff --git a/tests/resources/importer/basic.hy b/tests/resources/importer/basic.hy index 425099b..fd20429 100644 --- a/tests/resources/importer/basic.hy +++ b/tests/resources/importer/basic.hy @@ -1,4 +1,5 @@ ; This is a comment. It shall be ignored by the parser. -(print "Foo") +(def square (fn [x] + (* x x)))