Advertisement
Guest User

Untitled

a guest
Aug 22nd, 2019
85
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.15 KB | None | 0 0
  1. #![feature(async_await)]
  2.  
  3. async fn hello() -> Result<(), ()> {
  4. println!("Hello");
  5. Ok(())
  6. }
  7.  
  8. fn main() {
  9. #![allow(unused_must_use)]
  10. hello();
  11. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement