1 2 3 4 5 6 7 8
// Minimal test module fn hello() -> string { "Hello from module!"} fn add(a: i64, b: i64) -> i64 { a + b }