dmd/compiler/test/runnable/helloc.c
2024-02-24 06:49:24 +08:00

8 lines
99 B
C

#include <stdio.h>
#include <stdlib.h>
int main()
{
printf("hello world!\n");
return 0;
}