This shows you the differences between two versions of the page.
Both sides previous revision Previous revision Next revision | Previous revision | ||
devlogs:8_5_2022 [2022/05/10 18:27] root |
devlogs:8_5_2022 [2023/10/19 15:25] (current) |
||
---|---|---|---|
Line 142: | Line 142: | ||
<code rust> | <code rust> | ||
- | let i = (2.0," | + | fn main() { |
+ | let i = (2," | ||
let (num, | let (num, | ||
- | + | let anotherNum = i.0; //Lol yeah you can access it like that too | |
- | match triple | + | let anotherString = String:: |
- | (2.0," | + | match i { |
+ | | ||
//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!(" | (0, y, z) => println!(" | ||
Line 155: | Line 157: | ||
} | } | ||
} | } | ||
+ | |||
</ | </ | ||
that is all. | that is all. |