>> def f = 1 2
>> f
(1 2)
>> def g = 1
>> def f = g 2
>> f
1
I got the dual of variadic application working though, which is nice.
>> def app = [ 0 -> nil | N -> (app (N-1)) N ]
>> app 3
(System.nil 1 2 3)
No comments:
Post a Comment