10 lines
140 B
Rust
10 lines
140 B
Rust
//! Concurrency With Async
|
|
//!
|
|
//! Similar to working with threads.
|
|
|
|
use std::time::Duration;
|
|
|
|
fn main() {
|
|
println!("Hello, world!");
|
|
}
|