fun box() : String { val cl = 39 return if (sum(200, { cl }) == 239) "OK" else "FAIL" } fun sum(arg:Int, f : {() : Int}) : Int { return arg + f() }