main/
main.rs

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