struct Liheng {
company: String,
school: String,
current_focus: Vec<String>,
fun_fact: String,
}
impl Liheng {
fn new() -> Self {
Self {
company: String::from("IBM"),
school: String::from("Northwestern University"),
current_focus: String::from("AI Infrastructure"),
fun_fact: String::from("I prefer Rust over C/C++."),
}
}
}⭐ If you find my work interesting, consider giving it a star! ⭐



