Emmay

Results 3 comments of Emmay

Is this still an issue, as per Ben's comment?

``` l = [list: 1,2,3,4,5] fun add(sum, n): sum + n end # function form fold(add, 0, l) # method form l.foldl(add, 0) ``` It looks like both the function...