Files
spl/stage1/test00_basic.spl
2026-07-05 21:45:43 +08:00

9 lines
188 B
Plaintext
Raw Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
/* ===== 模块1核心基础 =====
* test00_basic — 最小程序 / 返回码
* 难度1/5
* 验证点函数定义、整型返回、ret 语句
*/
fn main() i32 {
ret 0;
}