Advertisement
Guest User

Untitled

a guest
Oct 18th, 2019
109
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.18 KB | None | 0 0
  1. #[cfg(target_os = "windows")]
  2. use actix;
  3. use serde; // How to say that it is windows import too?
  4.  
  5. #[cfg(target_os = "linux")]
  6. use tokio;
  7.  
  8.  
  9.  
  10. fn main() {
  11. println!("Hello, world!");
  12. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement