11.6 Semi-colons in Kotlin
Unlike programming languages such as Java and C++, Kotlin does not require semi-colons at the end of each statement or expression line. The following, therefore, is valid Kotlin code:
val mynumber = 10
println(mynumber)
Semi-colons are only required when multiple statements appear on the same line:
val mynumber = 10; println(mynumber)