view tests/minicomplex/templ1.d @ 641:d9927f20758b

Fiber support: clobber the registers we want restored on a context switch.
author Christian Kamm <kamm incasoftware de>
date Fri, 03 Oct 2008 09:11:41 +0200
parents 1bb99290e03a
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);
    }
}