vote up 2 vote down star

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?

flag

2 Answers

vote up 5 vote down check

Indeed there is: it's called "val". :-)

({ x: Double =>
  val y = x + x
  y * y
})(3)

The braces are of course optional here, I just prefer them to parentheses when defining functions (after all, this isn't Lisp). The val keyword defines a new binding within the current lexical scope. Scala doesn't force locals to define their own scope, unlike languages such as Lisp and ML.

Actually, var also works within any scope, but it's considered bad style to use it.

link|flag
Thanks :) I thought I had tried that, but I must have gotten the syntax wrong. Is there a way to have it all in one line? – namin Nov 18 '08 at 21:26
@Germán has the one-line version. – Daniel Spiewak Nov 19 '08 at 3:03
vote up 3 vote down

OK, here's the one liner WITH the binding:

 ({ x:Double => val y = x + x; y * y })(3)

Cheers

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.