fork download
  1. object Main extends App {
  2. def f(x: Int) = x + 2;
  3.  
  4. def y(x: Int => Int) = x(10)
  5.  
  6. val answer = y(f)
  7.  
  8. println(answer)
  9. }
Success #stdin #stdout 0.36s 382080KB
stdin
Standard input is empty
stdout
12