view tangotests/templ1.d @ 246:b604c56945b0 trunk

[svn r263] Changed *** ATTENTION *** to warnings. Implemented debug info for dynamic arrays, start of general composite support.
author lindquist
date Mon, 09 Jun 2008 15:52:22 +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);
    }
}