Diff
Not logged in

Differences From Artifact [8d98b81c5616ea88]:

To Artifact [783554bf667412ed]:


1 public import std.algorithm; 1 public import std.algorithm; 2 public import std.array; 2 public import std.array; 3 public import std.conv; 3 public import std.conv; 4 public import std.range; 4 public import std.range; 5 public import std.stdio; 5 public import std.stdio; 6 public import std.string; 6 public import std.string; 7 public import std.typecons; 7 public import std.typecons; > 8 import std.c.stdlib; > 9 > 10 void application_exit() > 11 { > 12 std.c.stdlib.exit(0); > 13 } 8 14 9 template DeriveCreate() 15 template DeriveCreate() 10 { 16 { 11 this(TS...)(TS params) 17 this(TS...)(TS params) 12 { 18 { 13 this.tupleof = params; 19 this.tupleof = params; 14 } 20 }