update ch1:sec3

This commit is contained in:
Yu Chen
2022-07-17 16:31:56 +08:00
parent 05e1d62ebd
commit 23084ca519

View File

@@ -233,7 +233,8 @@ Rust 的 core 库内建了以一系列帮助实现显示字符的基本 Trait
#[no_mangle]
extern "C" fn _start() {
println!("Hello, world!");
print!("Hello, "");
println!("world!");
sys_exit(9);
}