- This is hardworking and honest blockchain developer who has experience of many years.
- I am here to provide cutting edge solutions that meet the needs of my customers.
- I am sensitive to new technological trends and take pride in contributing to various open projects based on my experience and skills.
- Unfortunately, many of what I do is not sourced, but feel free to take a look at my public repository here.
/// Chain-Reactor's motto
struct MarkZuckerberg;
impl MarkZuckerberg {
/// Return Mark zuckerberg quote
fn said(&self) -> &str {
"You are better off trying something and having it not work and learning from that than not doing anything at all"
}
}
fn main() {
let mark_zuckerberg = MarkZuckerberg;
println!("mark zuckerberg - {}", mark_zuckerberg.said());
}