superlint/.automation/test/kotlin/kotlint_good_1.kt

7 lines
70 B
Kotlin
Raw Normal View History

2020-06-21 03:59:18 -04:00
fun main() {
2020-11-06 11:39:25 -05:00
val n = "World"
val v = "Hello, $n!"
2020-06-21 03:59:18 -04:00
2020-11-06 11:39:25 -05:00
println(v)
2020-06-21 03:59:18 -04:00
}