
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
6 lines
77 B
Kotlin
6 lines
77 B
Kotlin
package hello
|
|
|
|
fun main(args: Array<String>) {
|
|
println("Hello, world!")
|
|
}
|