mirror of
https://github.com/google/comprehensive-rust.git
synced 2024-12-16 23:08:36 +02:00
16 lines
423 B
Markdown
16 lines
423 B
Markdown
# Welcome to Day 2
|
|
|
|
Now that we have seen a fair amount of Rust, we will continue with:
|
|
|
|
* Structs, enums, methods.
|
|
|
|
* Pattern matching: destructuring enums, structs, and arrays.
|
|
|
|
* Control flow constructs: `if`, `if let`, `while`, `while let`, `break`, and
|
|
`continue`.
|
|
|
|
* The Standard Library: `String`, `Option` and `Result`, `Vec`, `HashMap`, `Rc`
|
|
and `Arc`.
|
|
|
|
* Modules: visibility, paths, and filesystem hierarchy.
|