what is going on in each of these forms of defining foo?:
scala> def foo = {1}
foo: Int
scala> foo
res2: Int = 1
But:
scala> def foo {1}
foo: Unit
scala> foo
scala>
|
|
|
|
|
|
|
See also this question and answer on SO:
Basically declaring a function with no |
|||
|
|
|
|
found this in http://anyall.org/scalacheat/:
|
|||
|
|