From 1261aea4d5655efd86d06b8057271d6c99deea85 Mon Sep 17 00:00:00 2001 From: Walter Bright Date: Fri, 23 Feb 2024 08:29:14 -0800 Subject: [PATCH] make sure hello world in C works --- compiler/test/runnable/helloc.c | 8 ++++++++ 1 file changed, 8 insertions(+) create mode 100644 compiler/test/runnable/helloc.c diff --git a/compiler/test/runnable/helloc.c b/compiler/test/runnable/helloc.c new file mode 100644 index 0000000000..52a74dbecd --- /dev/null +++ b/compiler/test/runnable/helloc.c @@ -0,0 +1,8 @@ +#include +#include + +int main() +{ + printf("hello world!\n"); + return 0; +}