fork download
  1. import std.stdio, std.typetuple;
  2.  
  3. void main() {
  4.  
  5. auto args = TypeTuple!(42, "HELLO_WORLD_DELPHI", 1.5);
  6.  
  7. ++args[0];
  8. args[1] ~= "_FEST_DETECTED";
  9. args[2] *= 3;
  10.  
  11. writefln("%s %s %s", args[0], args[1], args[2]);
  12. }
Success #stdin #stdout 0s 4116KB
stdin
Standard input is empty
stdout
43 HELLO_WORLD_DELPHI_FEST_DETECTED 4.5