Skip to content

Instantly share code, notes, and snippets.

//Type inference, global variable and function as object
var x = fun(x:Int, y:Int): Int {
return x + y
}
//Top level functions
fun main(args: Array<String>) {
println("Hello world")
}