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

9 行
134 B

  1. fn main(){
  2. let mut num=0 ;
  3. while num<=8 { // instruction while
  4. print ! ("{} ", num) ;
  5. num=num+1 ;
  6. }
  7. println!()
  8. }