aboutsummaryrefslogtreecommitdiff
path: root/test2.lang
diff options
context:
space:
mode:
authorEduardo Julian2014-12-18 02:32:49 -0400
committerEduardo Julian2014-12-18 02:32:49 -0400
commit8aa19bf2b8f6870779a04ba3782c60fd31655fa6 (patch)
treeef168377997f9012600c17da75e8050aee6b5854 /test2.lang
parentdc9486ecca2f42525fb46bf200fb06e4803912ba (diff)
Now folding the classes for lambdas and putting the implementation code inside the classes, not inside the module.
Diffstat (limited to 'test2.lang')
-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)))) )#