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.

7 regels
88 B

  1. fn main() {
  2. let num=10 ;
  3. if num==10 {
  4. println ! ("num est égal à 10") ;
  5. }
  6. }