diff --git a/blockexample.dee b/blockexample.dee index 9ca2e1b..80848ef 100644 --- a/blockexample.dee +++ b/blockexample.dee @@ -12,4 +12,7 @@ foo <- -> foo() ## Inside foo but not in baz or bar add <- x -> y -> - return x + y \ No newline at end of file + return x + y ## Multivariable functions by currying + +add(x) ## Returns a _function_ +add(x, y) ## This is equivalent to add(x)(y) \ No newline at end of file