reliable and efficient software (Rust Official) but especially folks who didn't think systems programming was for them (Ashley Williams) fn main() { let user_name = "Yuki"; println!("Hello, World!: {}", user_name); } 2020-08-22 Zli × サイバーエージェント 合同LT
Linux への導⼊の噂。 Rust Foundation の設⽴を 2020 年中に⾏うことが発表された。 Rust は次の 40 年のための⾔語 Rust: A Language for the Next 40 Years - Carol Nichols https://www.youtube.com/watch?v=A3AdN7U24iU 2020-08-22 Zli × サイバーエージェント 合同LT
| 2 | let text1 = String::from("Hello, world"); | ----- move occurs because `text1` has type `std::string::String`, which does not implement the `Copy` trait 3 | let text2 = text1; | ----- value moved here 4 | println!("{}", text1); | ^^^^^ value borrowed here after move 2020-08-22 Zli × サイバーエージェント 合同LT
は不変な変数として宣⾔される let x = 5; // the value is 5 println!("the value is {}", x); // 不変で束縛した変数に新しい値を代⼊しようとした。 // コンパイルエラーになる。 x = 6; println!("the updated value is {}", x); } 2020-08-22 Zli × サイバーエージェント 合同LT