Benjamin Gudehus 45a503806c Update kotlin.kt
Reformat per coding conventions.

>There is a space before colon where colon separates type and supertype and there’s no space where colon separates instance and type

via: https://kotlinlang.org/docs/reference/coding-conventions.html#colon
2016-05-20 16:02:44 +02:00

6 lines
77 B
Kotlin

package hello
fun main(args: Array<String>) {
println("Hello, world!")
}