mirror of
https://github.com/asterinas/asterinas.git
synced 2025-06-13 15:26:48 +00:00
9 lines
136 B
Plaintext
9 lines
136 B
Plaintext
#![no_std]
|
|
#![no_main]
|
|
|
|
use aster_frame::prelude::*;
|
|
|
|
#[aster_main]
|
|
fn kernel_main() {
|
|
println!("Hello world from guest kernel!");
|
|
} |