From 330d2f9609185c3546acac40592cf60ad447ed2e Mon Sep 17 00:00:00 2001 From: SpookyDervish Date: Sat, 4 Jul 2026 20:15:48 +1000 Subject: [PATCH] Add src/main.c --- src/main.c | 12 ++++++++++++ 1 file changed, 12 insertions(+) create mode 100644 src/main.c diff --git a/src/main.c b/src/main.c new file mode 100644 index 0000000..f38805d --- /dev/null +++ b/src/main.c @@ -0,0 +1,12 @@ +#include +#include + +on_import { + /* + This is where you define all your functions and structs. + + The on_import function is called by the compiler so you can let + it know about all your symbols you want to expose. + */ + printf("We've been imported!\n") +} \ No newline at end of file