We have a user registration function:
def register(client: String): Unit = {
print("New registration:")
throw Exception("Error!")
println(client)
}
What will be printed in the console if we run this function with the following parameter?
register("Alice")