Rust is the Future

Rust is the fucking future.

You don't know why? Well, too bad for you, fucker. Go and learn.

Nah, but seriously: Rust is the future. It's fucking memory-safe, it's fucking beautiful, and fucking easy to pick up on; most importantly: you can fucking use it for literally ANYTHING.

Let me elaborate on "beautiful". Have you ever fucking seen Rust code? Fucking no? Well check this fucker out:


use std::io;

fn main() {
    let mut input: String = String::new();

    io::stdin().read_line(&mut input).expect("failed to read input string");

    println!("fucking beautiful\ninput: {}", input);
}

Go ahead and read the fucking The Rust Programming Language Book. It's fucking easy. Just learn to read, yeah.


2 Kudos

Comments

Displaying 0 of 0 comments ( View all | Add Comment )