fork download
  1. fun id(x: Int) = x;
  2. fun applyTo10(f: (Int) -> Int = ::id) = f(10)
  3. fun main(args: Array<String>) {
  4. println(applyTo10());
  5. }
Success #stdin #stdout 0.05s 4382720KB
stdin
Standard input is empty
stdout
10