Files
sx/examples/13-code.sx
2026-02-09 18:07:41 +02:00

9 lines
152 B
Plaintext

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