aboutsummaryrefslogtreecommitdiff
path: root/test2.lang
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--test2.lang9
1 files changed, 9 insertions, 0 deletions
diff --git a/test2.lang b/test2.lang
index a60899827..5ff6eb196 100644
--- a/test2.lang
+++ b/test2.lang
@@ -47,3 +47,12 @@
(_. (_.. System out) (println (f "TRUE" "YOLO")))) )#
## ((lambda [x y] (_. (_.. System out) (println x))) "TRUE" "YOLO")
## (_. (_.. System out) (println ((lambda [x y] x) "TRUE" "YOLO")))
+#( (do (_. (_.. System out) (println true))
+ (_. (_.. System out) (println (another/id 12345)))
+ (_. (_.. System out) (println (constant "ONE" "TWO")))
+ (_. (_.. System out) (println 2.3))
+ (_. (_.. System out) (println #"Y"))
+ (_. (_.. System out) (println "this\tis a\nstring"))
+ (case (#Box "data")
+ (#Box value)
+ (_. (_.. System out) (println value)))) )#