test code

fukurou

the supreme coder
ADMIN
Kotlin:
package org.kotlinlang.play         // 1

fun main() {                        // 2
    println("Hello, World!")        // 3
}
 
Top