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:09] 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 86: | Line 86: | ||
The two other special matching cases are __other__ and _____. | The two other special matching cases are __other__ and _____. | ||
- | [[https:// | + | [[https:// |
<code rust> | <code rust> | ||
Line 115: | Line 115: | ||
==== 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 ~~ |