Des exemples de code pour programmer en Rust
您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

123456
  1. fn main(){
  2. let x = "hello".to_string() ;
  3. let y = String::from("hello") ;
  4. let z :&str = "hello" ;
  5. print! ("{} {} {}\n", x, y, z) ;
  6. }