In the Coursera course "Functional Programming Principles in Scala" Week 1 sample assignment (https://www.coursera.org/learn/progfun1/programming/xIz9O/example-assignment) Martin Ordersky mentions in one of his comments (on line 44 of the ListsSuites.scala test) that
* In Scala, it is allowed to pass an argument to a method using the block
* syntax, i.e. `{ argument }` instead of parentheses `(argument)`.
So when assigning a function definition in Scala would it be equivalent to say:
def foo = ()
and
def foo = {}