aboutsummaryrefslogtreecommitdiff
path: root/test2.lang
diff options
context:
space:
mode:
authorEduardo Julian2014-12-20 23:25:40 -0400
committerEduardo Julian2014-12-20 23:25:40 -0400
commit74d3233f7d7984ebcef0d4e6778f0596e867de6c (patch)
treeacb80d80ecf005fceff316b7ba4084407087c68c /test2.lang
parentef185e0ec91af1d22762ef55dc5586c240633e18 (diff)
* Java interop is almost finished.
% _. and _.. syntax has been replaced with ::
Diffstat (limited to 'test2.lang')
-rw-r--r--test2.lang4
1 files changed, 2 insertions, 2 deletions
diff --git a/test2.lang b/test2.lang
index 758f01720..90db0230b 100644
--- a/test2.lang
+++ b/test2.lang
@@ -24,8 +24,8 @@
(if true
(let f (lambda [x] (lambda [y] (x y)))
(let g (lambda [x] x)
- (_. (_.. System out) (println (f g "WE'VE GOT CLOSURES!")))))
- (_. (_.. System out) (println "FALSE"))))
+ (:: (:: System out) (println (f g "WE'VE GOT CLOSURES!")))))
+ (:: (:: System out) (println "FALSE"))))
## All of these work :D
#( (let output "IT WORKS!"