main

Macro main 

Source
macro_rules! main {
    ($entry:expr) => { ... };
}
Expand description

Generate the ove_main entry point from a Rust closure or function.

§Example

ove::main!(app_main);

fn app_main() {
    // create resources...
    ove::run();
}