- ๐ป consolemania: a cloud native playground with Spring boot
- ๐ป trenako: website with rust and actix web for model railways collectors
- ๐ ๐ฎ๐บ ๐ฎ lead engineer
- ๐ โค๏ธ ๐ฃ๐ฟ๐ผ๐ด๐ฟ๐ฎ๐บ๐บ๐ถ๐ป๐ด!
#[derive(Debug)]
struct AboutMe {
pronouns: Vec<String>,
languages: Vec<String>,
hobbies: Vec<String>,
fun_fact: Vec<String>,
}
impl AboutMe {
fn new(
pronouns: Vec<String>,
languages: Vec<String>,
hobbies: Vec<String>,
fun_fact: Vec<String>,
) -> Self {
AboutMe {
pronouns,
languages,
hobbies,
fun_fact,
}
}
}
fn main() {
let carlo = AboutMe::new(
vec!["He".to_owned(), "Him".to_owned()],
vec![
"C#".to_owned(),
"Kotlin".to_owned(),
"Java".to_owned(),
"Rust".to_owned(),
],
vec![
"mountain bike".to_owned(),
"reading".to_owned(),
"trekking for dummies".to_owned(),
"model railways".to_owned(),
],
vec![],
);
println!("{:#?}", carlo);
}
๐# |
Kotlin |
Java |
Rust |
Intellij Idea |
๐๐ถ๐ |
๐ฉ๐ถ๐๐๐ฎ๐น ๐ฆ๐๐๐ฑ๐ถ๐ผ ๐๐ผ๐ฑ๐ฒ |
Ubuntu |
โญ๏ธ From munific