Initial commit

This commit is contained in:
2026-07-07 10:56:04 +10:00
commit 4b5d5a2130
5 changed files with 312 additions and 0 deletions

12
src/main.c Normal file
View File

@@ -0,0 +1,12 @@
#include <comet/cometlib.h>
#include <stdio.h>
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")
}