view tangotests/templ1.d @ 236:df1abfe27be6 trunk

[svn r252] added warnings about using an up to date runtime
author ChristianK
date Sun, 08 Jun 2008 18:20:48 +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);
    }
}