view tangotests/templ1.d @ 265:455eb10696f2 trunk

[svn r286] removing test statistics from repository; they are too big and change too often
author ChristianK
date Sun, 15 Jun 2008 11:40:47 +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);
    }
}