After defining a function in the interpreter, Scala returns the following. What does the () indicate?
()
myfnc: ()Unit
The function takes no parameters.
The function has no side effects.
Returning unit types to the function is a closures.
The function returns no value.