1
0
mirror of https://github.com/google/comprehensive-rust.git synced 2025-04-05 10:05:39 +02:00

Merge pull request #140 from brandonpollack23/variables

Added some speaker notes to variables.md
This commit is contained in:
Martin Geisler 2023-01-10 09:31:22 +01:00 committed by GitHub
commit 9746af91fa
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -11,3 +11,10 @@ fn main() {
// println!("x: {x}");
}
```
<details>
* Due to type inference the `i32` is optional. We will gradually show the types less and less as the type progresses.
* Note that since `println!` is a macro, `x` is not moved, even using the function like syntax of `println!("x: {}", x)`
</details>