asterinas/osdk/src/commands/template/kernel.template
2024-02-20 20:31:07 +08:00

9 lines
136 B
Plaintext

#![no_std]
#![no_main]
use aster_frame::prelude::*;
#[aster_main]
fn kernel_main() {
println!("Hello world from guest kernel!");
}