dmd/compiler/test/runnable/helloUTF16.d
2022-07-09 18:53:07 +02:00

8 lines
246 B
D
Raw Blame History

This file contains invisible Unicode characters

This file contains invisible Unicode characters that are indistinguishable to humans but may be processed differently by a computer. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

extern(C) int printf(const char *, ...);
int main(char[][] args)
{
printf("hello world\n");
return 0;
}