view tangotests/templ1.d @ 316:163cad969791 trunk

[svn r337] Reverted changes to toobj.cpp: Module constructor calls can never be invokes.
author ChristianK
date Fri, 04 Jul 2008 08:51:49 +0200
parents 95f07e3f8bb9
children
line wrap: on
line source

module tangotests.templ1;

import Util = tango.text.Util;

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

void main()
{
    foreach (line; Util.lines("a\nb\nc"))
    {
        printf("%.*s\n", line.length, line.ptr);
    }
}