mirror of
https://github.com/dlang/dmd.git
synced 2025-04-26 05:00:16 +03:00
make sure hello world in C works
This commit is contained in:
parent
43131f9408
commit
1261aea4d5
1 changed files with 8 additions and 0 deletions
8
compiler/test/runnable/helloc.c
Normal file
8
compiler/test/runnable/helloc.c
Normal file
|
@ -0,0 +1,8 @@
|
|||
#include <stdio.h>
|
||||
#include <stdlib.h>
|
||||
|
||||
int main()
|
||||
{
|
||||
printf("hello world!\n");
|
||||
return 0;
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue