Generation

class from descriptionMon, 08 May 2023

persona con name, country

struct Person { name: String, country: String, } impl Person { fn greet(&self) -> String { format!("Hello, my name is {} and I'm from {}", self.name, self.country) } }

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