make sure hello world in C works

This commit is contained in:
Walter Bright 2024-02-23 08:29:14 -08:00 committed by Nicholas Wilson
parent 43131f9408
commit 1261aea4d5

View file

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