summaryrefslogtreecommitdiff
path: root/test
diff options
context:
space:
mode:
authorCarson Fleming <cflems@cflems.net>2026-08-05 01:05:22 -0400
committerCarson Fleming <cflems@cflems.net>2026-08-05 01:05:22 -0400
commita207a7f39514f03ddfafbe39e52a3fae57a414b4 (patch)
tree5f60d98707bf12255f294b3545d8e4f8e6005bca /test
parentc462e3dd752f95adc46c0f2cf97c45c49d9744b4 (diff)
downloadccc-a207a7f39514f03ddfafbe39e52a3fae57a414b4.tar.gz
got hello world working with some hacks
Diffstat (limited to 'test')
-rw-r--r--test/hello-world.c6
1 files changed, 6 insertions, 0 deletions
diff --git a/test/hello-world.c b/test/hello-world.c
new file mode 100644
index 0000000..ec2e87c
--- /dev/null
+++ b/test/hello-world.c
@@ -0,0 +1,6 @@
+void printf(char* str);
+
+int main (int argc, char** argv) {
+ printf("hello world\n");
+ return 0;
+}