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