view test/mainargs1.d @ 155:7f92f477ff53 trunk

[svn r171] starting to move IR data from AST nodes into IRState; started with IrFunction
author ChristianK
date Tue, 29 Apr 2008 21:33:50 +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);
    }
}