This is an old revision of the document!
I spent the weekday mostly working and doing other things so I try to spend a couple hours every weekend doing more rustling challenges as it still seems thats getting me to understand the basics of rust better. After I finish rustlings I will go back to looking at bevy. Maybe it will look less cryptic.
Structs hold a bunch of values like tuples. But a struct will have each piece of data named ie: key:value pair. eg
struct Duck{ awesomeness:f32, //Basic values name:(String), color:(u8,u8,u8), //Tuples can be stored }
To use a struct, you can access bits of it using the dot notation.
let dave = Duck{ awesomeness:100.0, name: String::from("Dave"), color:(255,255,0), }; println!("{}",dave.name);
~~ DISCUSSION | F's ~~
F's
Vogue Baby Struct a pose