stage1 重构测试且成功00-05

This commit is contained in:
zzy
2026-07-05 21:45:43 +08:00
parent 51d8510b79
commit e2e0ebc21f
39 changed files with 1090 additions and 461 deletions

8
stage1/test00_basic.spl Normal file
View File

@@ -0,0 +1,8 @@
/* ===== 模块1核心基础 =====
* test00_basic — 最小程序 / 返回码
* 难度1/5
* 验证点函数定义、整型返回、ret 语句
*/
fn main() i32 {
ret 0;
}