by shigemk2

当面は技術的なことしか書かない

; as newline on Scala

println("a");println("b");println("c")

Scala is a line-oriented language where statements may be terminated by semi-colons or newlines.

こんな感じで、一応のアレとして、;を改行として見なすことができる。

なお、

The tokens that can terminate a statement are: literals, identifiers and the following delimiters and reserved words:

this    null    true    false    return    type    <xml-start>
_       )       ]       }

http://www.scala-lang.org/files/archive/spec/2.11/01-lexical-syntax.html