object Main extends App { def quiz = { val result = 5 + 6 } println(quiz) }
def quiz = { val result = 5; + 6 }
someLongExpression + someOtherExpression
someLongExpression; + someOtherExpression
(someLongExpression + someOtherExpression)
Login in to like
Login in to comment
Shouldn't be there also a warning about local variable `result` not being used?
2020 Feb 15, 5:10:40 PM
or Read more about Scala Quizzes
Login in to like
Login in to comment