1 2 3 4 5 6
async fn compute(x: i32) -> i32 { x * 2 } async fn example() -> i32 { { { compute(5).await } } }