From 8aa19bf2b8f6870779a04ba3782c60fd31655fa6 Mon Sep 17 00:00:00 2001 From: Eduardo Julian Date: Thu, 18 Dec 2014 02:32:49 -0400 Subject: Now folding the classes for lambdas and putting the implementation code inside the classes, not inside the module. --- test2.lang | 9 +++++++++ 1 file changed, 9 insertions(+) (limited to 'test2.lang') 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)))) )# -- cgit v1.2.3