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