toml
[dependencies]
executor = "0.0.5"
```rust use executor::Executor;
pub fn main() -> () { Executor::spawn(async { consolelog("Hello"); windowsettimeout(1000).await; consolelog("World"); windowsettimeout(1000).await; console_log("!"); }); } ```
#![no_std]
and minimally uses alloc
(Box
and Arc
)This project is licensed under either of
at your option.
Unless you explicitly state otherwise, any contribution intentionally submitted
for inclusion in executor
by you, as defined in the Apache-2.0 license, shall be
dual licensed as above, without any additional terms or conditions.