User Tools

Site Tools


devlogs:14_5_2022

Differences

This shows you the differences between two versions of the page.

Link to this comparison view

Both sides previous revision Previous revision
Next revision
Previous revision
devlogs:14_5_2022 [2022/05/14 20:11]
root
devlogs:14_5_2022 [2023/10/19 15:25] (current)
Line 13: Line 13:
  name:(String),   name:(String), 
  color:(u8,u8,u8), //Tuples can be stored  color:(u8,u8,u8), //Tuples can be stored
- //I DONT THING YOU CAN NEST ENUMS..... lmk bois+ //I DONT THINK YOU CAN NEST ENUMS..... lmk bois
 } }
 </code> </code>
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://github.com/rust-lang/rustlings/tree/main/exercises/modules| FROM RUSTLINGS]]
 +
 +<code rust>
 +mod sausage_factory {
 + // Don't let anybody outside of this module see this!
 + fn get_secret_recipe() -> String {
 +  String::from("Ginger")
 + }
 +
 + pub fn make_sausage() {
 +  get_secret_recipe();
 +  println!("sausage!");
 + }
 +}
 +
 +fn main() {
 +    sausage_factory::make_sausage();
 +}
 +</code>
 +
 +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::time::UNIX_EPOCH as UNIX_EPOCH;
 +use std::time::SystemTime as SystemTime;
 +
 +fn main() {
 + match SystemTime::now().duration_since(UNIX_EPOCH) {
 +  Ok(n) => println!("1970-01-01 00:00:00 UTC was {} seconds ago!", n.as_secs()),
 +  Err(_) => panic!("SystemTime before UNIX EPOCH!"),
 + }
 +}
 +</code>
 +
 +Yea man thats basically about it... why are you (([[https://www.youtube.com/watch?v=2HOClc6Svg4|here]]))
  
 ~~DISCUSSION | F's ~~ ~~DISCUSSION | F's ~~
devlogs/14_5_2022.1652577068.txt.gz ยท Last modified: 2023/10/13 16:43 (external edit)