aboutsummaryrefslogtreecommitdiff
path: root/tests
diff options
context:
space:
mode:
authorJoel Martin <github@martintribe.org>2015-02-15 20:11:11 -0600
committerJoel Martin <github@martintribe.org>2015-02-15 20:11:11 -0600
commit9d8f02993276fe9b77f7c21099d1b9f1602d195c (patch)
tree069272615d5049104fe9eb32194e905f4b24ba1f /tests
parentdc2c5b3d8f41cbae56c6fb22847d0aac5806b51f (diff)
downloadmal-9d8f02993276fe9b77f7c21099d1b9f1602d195c.tar.gz
mal-9d8f02993276fe9b77f7c21099d1b9f1602d195c.zip
miniMAL: step6
Diffstat (limited to 'tests')
-rw-r--r--tests/step6_file.mal12
1 files changed, 6 insertions, 6 deletions
diff --git a/tests/step6_file.mal b/tests/step6_file.mal
index 5c7e32f..adee56d 100644
--- a/tests/step6_file.mal
+++ b/tests/step6_file.mal
@@ -1,3 +1,9 @@
+;;; TODO: really a step5 test
+;;
+;; Testing that (do (do)) not broken by TCO
+(do (do 1 2))
+;=>2
+
;; Testing read-string, eval and slurp
(read-string "(+ 2 3)")
@@ -21,12 +27,6 @@
(inc3 9)
;=>12
-;;; TODO: really a step5 test
-;;
-;; Testing that (do (do)) not broken by TCO
-(do (do 1 2))
-;=>2
-
;;
;; Testing that *ARGV* exists and is an empty list
(list? *ARGV*)