This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
//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") | |
} |