rust_apex/
macros.rs

1#[macro_export]
2macro_rules! lambda_entry {
3    ($func: ident) => (
4        fn main() {
5            ::rust_apex::run($func)
6        }
7    )
8}