코틀린은 JVM의 언어 중 아무튼 핫하다.

val customers = 10
println("There are $customers customers")
// There are 10 customers

println("There are ${customers + 1} customers")
// There are 11 customers

Type에 대한 값

Collections

콜렉션은 자바에서는 순서나 집합적인 저장공간이다.