mobile-entry-point
This attribute macro wraps a function to make it the entry-point for an iOS or Android mobile app. Use cargo-mobile
to generate matching project files!
```rust use mobileentrypoint::mobileentrypoint;
fn main() { println!("Hello world!"); } ```