2026-07-04 20:15:48 +10:00
|
|
|
#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.
|
|
|
|
|
*/
|
2026-07-07 10:57:21 +10:00
|
|
|
printf("We've been imported!\n");
|
2026-07-04 20:15:48 +10:00
|
|
|
}
|