Instead of writing
((x: Double) => (((y: Double) => y*y))(x+x))(3)
I would like to write something like
((x: Double) => let y=x+x in y*y)(3)
Is there anything like this sort of syntactic sugar in Scala?
|
|
Instead of writing
I would like to write something like
Is there anything like this sort of syntactic sugar in Scala?
|
||
|
|
|
|
Indeed there is: it's called "
The braces are of course optional here, I just prefer them to parentheses when defining functions (after all, this isn't Lisp). The Actually, |
||||
|
|
|
OK, here's the one liner WITH the binding:
Cheers |
||
|
|