Files
ldc/tests/d1/minicomplex/templ1.d
2012-09-07 03:51:31 +02:00

14 lines
213 B
D

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);
}
}