phobos 0.113

This commit is contained in:
Brad Roberts 2007-09-10 04:30:47 +00:00
parent dfb3c86aec
commit bc412e7c3f
19 changed files with 279 additions and 16 deletions

View file

@ -66,6 +66,13 @@ printf("test2\n");
printf("args.length = %d\n", args.length);
for (int i = 0; i < args.length; i++)
printf("args[%d] = '%s'\n", i, cast(char *)args[i]);
int[3] x;
x[0] = 3;
x[1] = 45;
x[2] = -1;
x.sort;
printf("Success\n!");
return 0;
}