Generation

generate functionSun, 29 Jan 2023

Мерседес

struct Car { brand: String, model: String, year: usize, } fn main() { let my_car = Car { brand: String::from("Mercedes"), model: String::from("C180"), year: 2008, }; println!("{:?}", my_car); }

Want to kickstart your project?Use the new AI Studio to create your code