Hexa
06/09/2019, 4:03 PMkotlinc /mydir/kotlin-dsl/samples/hello-kotlin/src/main/kotlin/samples/HelloWorld.kt -include-runtime -d tester.jar
//HelloWorld.kt file
package samples
fun main(args: Array<String>) {
val p = Parser()
println(p.hello())
}
class Parser {
fun hello(): String {
return "Hello world"
}
}