Rust 005 Variable 發表於 2020-11-09 分類於 Rust tutorials 閱讀次數: Disqus: Rust 變量在變量中我們可以給予一些固定的值在變數中,而這些值不允許被任意更改。 12let name = "Bob";println!("My name is {}.", name); 12const ID: i32 = 001;println!("My ID is {}.", ID); 分配多個變量的值。 12let ( a, b ) = ("Alice", 23);println!("{} is {}.", a, b); 輸出結果