forked from mirror/async-std
You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
16 lines
303 B
Rust
16 lines
303 B
Rust
5 years ago
|
//! Prints the runtime's execution log on the standard output.
|
||
|
|
||
|
use async_std::task;
|
||
|
|
||
|
fn main() {
|
||
|
femme::start(log::LevelFilter::Trace).unwrap();
|
||
|
|
||
|
task::block_on(async {
|
||
|
let handle = task::spawn(async {
|
||
|
log::info!("Hello world!");
|
||
|
});
|
||
|
|
||
|
handle.await;
|
||
|
})
|
||
|
}
|