aboutsummaryrefslogtreecommitdiff
path: root/test2.lang
diff options
context:
space:
mode:
authorEduardo Julian2014-12-16 00:58:36 -0400
committerEduardo Julian2014-12-16 00:58:36 -0400
commit70fe9266ce1ccb4fe964b831a7ab61f0d6262111 (patch)
treeeab9cca12d932a29b08a9ed0961b8d2600985c75 /test2.lang
parent08de30a36ff6599e583d22c4305bfee9878f92ea (diff)
+ Strings now have escape characters.
+ Characters have been added. % Unicode support is missing...
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 0c6eeb342..0308a745f 100644
--- a/test2.lang
+++ b/test2.lang
@@ -30,9 +30,11 @@
(def (main args)
(if true
(do (_. (_.. System out) (println true))
- (_. (_.. System out) (println 1))
+ (_. (_.. System out) (println (another/id 1)))
(_. (_.. System out) (println 2.3))
- (_. (_.. System out) (println "string")))
+ (_. (_.. System out) (println #"Y"))
+ (_. (_.. System out) (println "this\tis a\nstring"))
+ )
(_. (_.. System out) (println "FALSE"))))
## All of these work :D