I'm a Front-end dev from France
pub struct Lelouch {
pub name: Name,
pub age: i8,
pub languages: Vec<Langs>,
}
impl Lelouch {
pub fn create() -> Self {
Lelouch {
name: Name::new("Baptiste", "Zahnow"),
age: 18,
languages: vec![Langs::French, Langs::German, Langs::English],
}
}
}
Born in february the 27th in 2006 in Hannover (Germany), living in Strasbourg (France)