mirror of
https://github.com/xomboverlord/ldc.git
synced 2026-01-13 11:23:14 +01:00
19 lines
222 B
D
19 lines
222 B
D
module tangotests.lazy2;
|
|
|
|
extern(C) int printf(char*, ...);
|
|
|
|
void main()
|
|
{
|
|
lazy1("hello\n");
|
|
}
|
|
|
|
void lazy1(lazy char[] str)
|
|
{
|
|
lazy2(str);
|
|
}
|
|
|
|
void lazy2(lazy char[] msg)
|
|
{
|
|
printf("%.*s", msg.length, msg.ptr);
|
|
}
|