mirror of
https://github.com/xomboverlord/ldc.git
synced 2026-01-12 02:43:14 +01:00
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);
|
|
}
|
|
}
|