Documentation
1
2
3
4
5
6
fn main() {
    // Register the module name `main` to rog, so all debug logs under the main module could be printed.
    rog::reg("main");
    rog::debugln!("debug");
    rog::println!("print");
}