mirror of
https://github.com/dlang/dmd.git
synced 2025-04-27 13:40:11 +03:00
8 lines
246 B
D
8 lines
246 B
D
extern(C) int printf(const char *, ...);
|
||
|
||
int main(char[][] args)
|
||
{
|
||
printf("hello world\n");
|
||
|
||
return 0;
|
||
}
|