spooky/examples/with_imports.spooky

10 lines
145 B
Plaintext
Raw Permalink Normal View History

2026-04-29 16:15:08 +00:00
import "modules/types.spooky";
import "modules/math.spooky";
2026-04-29 18:56:41 +00:00
fn main() -> int {
let p: Point;
2026-04-29 16:15:08 +00:00
p.x = 1;
p.y = 2;
return add(p.x, p.y);
}