Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Put curly braces even around one-line if, else or loop statements:

Code Block
scala
scala
// Correct:
if (true) {
  println("Wow!")
}

// Wrong:
if (true)
  println("Wow!")