Rust Programming Language - Steve Klabnik and Carol Nichols Date: 2022-11-27 | An associated function is implemented on a type, in this case String, | rather than on a particular instance of a String. Chapter: Processing a Guess Date: 2022-11-28 | A match expression is made up of arms. Chapter: Comparing the Guess to the Secret Number Date: 2022-11-28 | Keep in mind that Rust is a statically typed language, which means | that it must know the types of all variables at compile time. Chapter: Data Types Date: 2022-11-29 | Statements are instructions that perform some action and do not | return a value. Expressions evaluate to a resulting value Chapter: Functions Date: 2022-11-29 | This is different from what happens in other languages, such as C | and Ruby, where the assignment returns the value of the assignment. Chapter: Functions Date: 2022-11-29 | Expressions do not include ending semicolons. If you add a semicolon | to the end of an expression, you turn it into a statement Chapter: Functions Date: 2022-11-29 | Unlike languages such as Ruby and JavaScript, Rust will not | automatically try to convert non-Boolean types to a Boolean Chapter: Control Flow