mirror of
https://github.com/asterinas/asterinas.git
synced 2025-06-23 01:13:23 +00:00
10 lines
147 B
Plaintext
10 lines
147 B
Plaintext
#![no_std]
|
|
#![deny(unsafe_code)]
|
|
|
|
use aster_frame::prelude::*;
|
|
|
|
#[aster_main]
|
|
fn kernel_main() {
|
|
println!("Hello world from guest kernel!");
|
|
}
|