mirror of
https://github.com/dlang/phobos.git
synced 2025-04-26 21:22:20 +03:00
phobos 0.113
This commit is contained in:
parent
dfb3c86aec
commit
bc412e7c3f
19 changed files with 279 additions and 16 deletions
|
@ -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;
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue