mirror of
https://github.com/xomboverlord/ldc.git
synced 2026-01-11 18:33:14 +01:00
14 lines
213 B
D
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);
|
|
}
|
|
}
|