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:34] 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 | let anotherNum = i.0; //Lol yeah you can access it like that too | ||
let anotherString = String:: | let anotherString = String:: | ||
match i { | match i { | ||
- | (2.0," | + | |
//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 156: | Line 157: | ||
} | } | ||
} | } | ||
+ | |||
</ | </ | ||
that is all. | that is all. |