Des exemples de code pour programmer en Rust
您不能選擇超過 %s 個話題 話題必須以字母或數字為開頭,可包含連接號 ('-') 且最長為 35 個字

7 行
133 B

  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. }