mirror of
https://github.com/xomboverlord/ldc.git
synced 2026-09-17 19:07:05 +02:00
In particular, assertions has been fixed to include file/line info, and much more!
12 lines
158 B
D
12 lines
158 B
D
module mainargs1;
|
|
|
|
extern(C) int printf(char*,...);
|
|
|
|
void main(string[] args)
|
|
{
|
|
foreach(v; args)
|
|
{
|
|
printf("%.*s\n", v.length, v.ptr);
|
|
}
|
|
}
|