view tangotests/templ1.d @ 204:11fe364b9a3e trunk

[svn r220] Added: test results for [219]
author lindquist
date Tue, 13 May 2008 16:16:50 +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);
    }
}