Des exemples de code pour programmer en Rust
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

11 lines
391 B

  1. fn main() {
  2. let x : i32 = 100 ;
  3. let y : i32 = 200 ;
  4. println ! ("x est plus grand que y : {}", x > y) ;
  5. println ! ("x est inférieur à y : {}", x < y) ;
  6. println ! ("x n'est pas égal à y : {}", x != y) ;
  7. println ! ("x is supérieur ou égal à y : {}", x >= y) ;
  8. println ! ("x est inférieur ou égal à y : {}", x <= y) ;
  9. println ! ("x est strictement égal à y : {}", x == y) ;
  10. }