Experienced Professional Blockchain Engineer with over 8 years of expertise in designing, developing, and maintaining decentralized applications and blockchain-based systems.
/// Struct to represent Franklin D. Roosevelt
struct FranklinDRoosevelt;
impl FranklinDRoosevelt {
/// Method to return a quote by Franklin D. Roosevelt
fn said(&self) -> &str {
"The only limit to our realization of tomorrow is our doubts of today."
}
}
fn main() {
let franklin_d_roosevelt = FranklinDRoosevelt;
// Print out an inspiring quote
println!("Franklin D. Roosevelt once said: {}", franklin_d_roosevelt.said());
}