fork download
  1. import std.stdio;
  2.  
  3. void foo(void delegate(int, int) x) { x(5, 10); }
  4.  
  5. void main()
  6. {
  7. foo((int a, int b) { writeln(a+b); });
  8. }
Success #stdin #stdout 0.01s 2120KB
stdin
Standard input is empty
stdout
15