Advertisement
cwchen

[Rust] if block demo

Aug 22nd, 2017
592
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Rust 0.10 KB | None | 0 0
  1. fn main() {
  2.     let x = 3;
  3.  
  4.     if x > 0 {
  5.         println!("x is larger than zero");
  6.     }
  7. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement