6 lines
191 B
Rust
6 lines
191 B
Rust
// In order to be compatible with both desktop, wasm, and android, the example is both a binary and a library.
|
|
// Just forward to the library in main
|
|
|
|
fn main() {
|
|
parts_rs_lib::main();
|
|
}
|