9 lines
126 B
Rust
9 lines
126 B
Rust
/*
|
|
Can we bind native things?
|
|
*/
|
|
|
|
native "rust" mod rustrt {
|
|
fn task_yield();
|
|
}
|
|
|
|
fn main() { bind rustrt::task_yield(); }
|