User Tools

Site Tools


devlogs:8_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:8_5_2022 [2022/05/10 18:34]
root
devlogs:8_5_2022 [2023/10/19 15:25] (current)
Line 142: Line 142:
  
 <code rust> <code rust>
-let i = (2.0,"alex",false);+fn main() { 
 +let i = (2,"alex",false);
 let (num,name,truth) = i; // Deconstruct it using let let (num,name,truth) = i; // Deconstruct it using let
 let anotherNum = i.0; //Lol yeah you can access it like that too let anotherNum = i.0; //Lol yeah you can access it like that too
 let anotherString = String::from(i.1); let anotherString = String::from(i.1);
 match i { match i {
- (2.0,"alex",false) => println!("WOW what a specific toople");+ (2,"alex",false) => println!("WOW what a specific toople"),
  //IF first is 0 and then Destructure the second and third elements  //IF first is 0 and then Destructure the second and third elements
  (0, y, z) => println!("First is `0`, `y` is {:?}, and `z` is {:?}", y, z),  (0, y, z) => println!("First is `0`, `y` is {:?}, and `z` is {:?}", y, z),
Line 156: Line 157:
     }     }
 } }
 +
 </code> </code>
 that is all. that is all.
devlogs/8_5_2022.1652225651.txt.gz · Last modified: 2023/10/13 16:43 (external edit)