summaryrefslogtreecommitdiff
path: root/test/main.c
diff options
context:
space:
mode:
authorAlejandro Sior <aho@sior.be>2022-07-30 22:53:58 +0200
committerAlejandro Sior <aho@sior.be>2022-07-30 22:53:58 +0200
commitab4e773dacc5411b7ede04950b07209dc606ad2f (patch)
tree6032329627c28565381c10cc47de146fc2c03b77 /test/main.c
cook: add basic makefile generation
Diffstat (limited to 'test/main.c')
-rw-r--r--test/main.c8
1 files changed, 8 insertions, 0 deletions
diff --git a/test/main.c b/test/main.c
new file mode 100644
index 0000000..ce0991a
--- /dev/null
+++ b/test/main.c
@@ -0,0 +1,8 @@
+#include <stdio.h>
+
+int test();
+
+int main() {
+ printf("test returned: %d\n", test());
+ return 0;
+} \ No newline at end of file