Attribute Macro ostd::main

#[main]
Expand description

This macro is used to mark the kernel entry point.

ยงExample

use ostd::prelude::*;

#[ostd::main]
pub fn main() {
    println!("hello world");
}