mirror of
https://github.com/xomboverlord/ldc.git
synced 2026-02-17 12:23:14 +01:00
12 lines
193 B
D
12 lines
193 B
D
import tango.io.Console;
|
|
|
|
void main()
|
|
{
|
|
printf("enter\n");
|
|
assert(Cout !is null);
|
|
Cout("Hi, says LLVMDC + Tango").newline;
|
|
printf("exit\n");
|
|
}
|
|
|
|
extern(C) int printf(char*,...);
|