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.
|
- fn main() {
- let num = funt(100) ; // appelle la fonction
- println ! ("La valeur de num est : { }", num) ;
- }
-
- fn funt(num : i32) -> i32 { // spécifier un type de retour
- num + 200 // renvoie une valeur à l'appelant
- }
|