aboutsummaryrefslogtreecommitdiff
path: root/test2.lang
diff options
context:
space:
mode:
authorEduardo Julian2014-12-15 22:54:35 -0400
committerEduardo Julian2014-12-15 22:54:35 -0400
commit08de30a36ff6599e583d22c4305bfee9878f92ea (patch)
treeae7662d6e0d9d750919e83b3eb48aba3e087f1be /test2.lang
parentab72e219835d05d7ce76111626a8119a64f5f283 (diff)
Added ints and floats.
Diffstat (limited to 'test2.lang')
-rw-r--r--test2.lang6
1 files changed, 4 insertions, 2 deletions
diff --git a/test2.lang b/test2.lang
index 14e6604a5..0c6eeb342 100644
--- a/test2.lang
+++ b/test2.lang
@@ -29,8 +29,10 @@
(def (main args)
(if true
- (do (_. (_.. System out) (println "ONE"))
- (_. (_.. System out) (println "TWO")))
+ (do (_. (_.. System out) (println true))
+ (_. (_.. System out) (println 1))
+ (_. (_.. System out) (println 2.3))
+ (_. (_.. System out) (println "string")))
(_. (_.. System out) (println "FALSE"))))
## All of these work :D