view test/mainargs1.d @ 191:2900754a6989 trunk

[svn r207] Fixed: the runtime support didn't handle string switch.
author lindquist
date Mon, 12 May 2008 14:58:55 +0200
parents 44a95ac7368a
children d9d5d59873d8
line wrap: on
line source

module mainargs1;

extern(C) int printf(char*,...);

void main(string[] args)
{
    foreach(v; args)
    {
        printf("%.*s\n", v.length, v.ptr);
    }
}