Hacker News new | ask | show | jobs
by VivaTechnics 123 days ago
fn main() { let mood = "awful";

    let mut msg = r#"
    We feel super sad.
    Rust in Peace.

    Steel dreams compile to dust,
    Silent threads unwind.
    Memory fades,
    Borrowed time returned.
    "#;

    println!("{}\n{}", mood, msg);
}