Files
sx/examples/13-code.sx
2026-02-11 14:22:25 +02:00

9 lines
147 B
Plaintext

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