This shows you the differences between two versions of the page.
Both sides previous revision Previous revision Next revision | Previous revision | ||
devlogs:14_5_2022 [2022/05/14 20:03] root |
devlogs:14_5_2022 [2023/10/19 15:25] (current) |
||
---|---|---|---|
Line 13: | Line 13: | ||
| | ||
| | ||
- | //I DONT THING YOU CAN NEST ENUMS..... lmk bois | + | //I DONT THINK YOU CAN NEST ENUMS..... lmk bois |
} | } | ||
</ | </ | ||
Line 84: | Line 84: | ||
Matches must be **EXHAUSTIVE**.. or rust mama will yell. | Matches must be **EXHAUSTIVE**.. or rust mama will yell. | ||
- | The two other special matching cases are __other__ and _____ | + | The two other special matching cases are __other__ and _____. |
+ | [[https:// | ||
+ | |||
+ | <code rust> | ||
+ | let dice_roll = 9; | ||
+ | match dice_roll { | ||
+ | 3 => add_fancy_hat(), | ||
+ | 7 => remove_fancy_hat(), | ||
+ | other => move_player(other), | ||
+ | } | ||
+ | |||
+ | fn add_fancy_hat() {} | ||
+ | fn remove_fancy_hat() {} | ||
+ | fn move_player(num_spaces: | ||
+ | </ | ||
+ | Here the values 3 and 7 are covered. ALL OTHER VALUES ARE EVALUATED AS OTHER. We can also use _ which kind of does the same thing but will also work with values that are non-valid. | ||
+ | <code rust> | ||
+ | let dice_roll = 9 | ||
+ | match dice_roll { | ||
+ | 3 => add_fancy_hat(), | ||
+ | 7 => remove_fancy_hat(), | ||
+ | _ => (), // the () is an empty tuple and basically says "Yo, mr.code don't do anything" | ||
+ | } | ||
+ | |||
+ | fn add_fancy_hat() {} | ||
+ | fn remove_fancy_hat() {} | ||
+ | </ | ||
==== Modules ==== | ==== Modules ==== | ||
+ | Modules help break up code into reusable chunks. Kind of like namespaces. | ||
+ | |||
+ | **A module is a collection of items: functions, structs, traits, impl and other modules.** | ||
+ | Creating a module [[https:// | ||
+ | |||
+ | <code rust> | ||
+ | mod sausage_factory { | ||
+ | // Don't let anybody outside of this module see this! | ||
+ | fn get_secret_recipe() -> String { | ||
+ | String:: | ||
+ | } | ||
+ | |||
+ | pub fn make_sausage() { | ||
+ | get_secret_recipe(); | ||
+ | println!(" | ||
+ | } | ||
+ | } | ||
+ | |||
+ | fn main() { | ||
+ | sausage_factory:: | ||
+ | } | ||
+ | </ | ||
+ | |||
+ | Another thing we can do with modules is bring them into scope to use them with shorthand names. This can be done with the **use .. as** syntax. | ||
+ | |||
+ | <code rust> | ||
+ | use std:: | ||
+ | use std:: | ||
+ | |||
+ | fn main() { | ||
+ | match SystemTime:: | ||
+ | Ok(n) => println!(" | ||
+ | Err(_) => panic!(" | ||
+ | } | ||
+ | } | ||
+ | </ | ||
+ | Yea man thats basically about it... why are you (([[https:// | ||
~~DISCUSSION | F's ~~ | ~~DISCUSSION | F's ~~ |