// Erick - Bitcoin Developer
struct Dev {
age: &'static str,
work: &'static str,
learning: Vec<&'static str>,
tech_stack: Vec<&'static str>,
}
fn main() {
let erick = Dev {
age: "20",
work: "Bitcoin Open Source Developer, Vinteum Fellow",
learning: vec!["bitcoin", "Lightning Network"],
tech_stack: vec!["Rust", "TypeScript", "JavaScript", "Go", "C#"],
};
// Building the future of Bitcoin...
}
// Erick - Bitcoin Developer
struct Dev {
age: &'static str,
work: &'static str,
learning: Vec<&'static str>,
tech_stack: Vec<&'static str>,
}
fn main() {
let erick = Dev {
age: "20",
work: "Bitcoin Open Source Developer, Vinteum Fellow",
learning: vec!["bitcoin", "Lightning Network"],
tech_stack: vec!["Rust", "TypeScript", "JavaScript", "Go", "C#"],
};
// Building the future of Bitcoin...
}