bcf6508c4c
修复审查 #2: use 语句从 skippable TODO 实现为完整符号导入 use math_mod::add → 加载模块, 匹配 pub 函数/结构体/枚举, 零前缀导入 新增 37_use.l 集成测试 Co-Authored-By: Claude Opus 4.7 <noreply@anthropic.com>
7 lines
81 B
Common Lisp
7 lines
81 B
Common Lisp
use math_mod::add;
|
|
|
|
fn main() -> i64 {
|
|
print_i64(add(3, 4));
|
|
return 0;
|
|
}
|