view tangotests/templ1.d @ 283:9bb48fb57a7d trunk

[svn r304] Fix associative array literals by always reserving a zero inited temporary for them.
author ChristianK
date Sat, 21 Jun 2008 00:54:55 +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);
    }
}