so... jai :D

This commit is contained in:
agra
2026-02-04 01:34:30 +02:00
commit 55fc5790e4
60 changed files with 15876 additions and 0 deletions

9
examples/13-code.sx Normal file
View File

@@ -0,0 +1,9 @@
#import "modules/std.sx";
generate::() -> string {
return "print(\"hello from the other side\n\");";
}
main :: () {
#insert #run generate();
}