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