Files

8 lines
117 B
Common Lisp

mod math_mod;
fn main() -> i64 {
let result = math_mod::add(3, 4);
print_i64(result); // 7
return 0;
}