mirror of
https://github.com/LearningOS/rust-based-os-comp2022.git
synced 2026-05-09 23:31:29 +08:00
14 lines
215 B
Rust
14 lines
215 B
Rust
#![no_std]
|
|
#![no_main]
|
|
|
|
#[macro_use]
|
|
extern crate user_lib;
|
|
|
|
/// 正确输出:
|
|
/// Hello world from user mode program!
|
|
|
|
#[no_mangle]
|
|
fn main() -> i32 {
|
|
println!("Hello, world from user mode program!");
|
|
0
|
|
} |