Rust makes me feel like a very stupid fake dev

Reply to this note

Please Login to reply.

Discussion

Rust makes me feel like a real dev. Python makes me feel like a fake dev.

Hello World in #Rust makes me feel like I'm back in kindergarten :(

```

fn main() {

println!("Hello, world!");

}

```

```

fn main() {

let name = "world!";

println!("Hello, {}", name);

}

```

```

struct Greeting {

name: String,

}

fn main() {

let greeting = Greeting{ name: "world!".to_string()};

println!("Hello, {}", greeting.name);

}

```

```

struct Greeting {

name: String,

}

impl Greeting {

fn new(name: &str) -> Self {

Greeting {

name: name.to_string(),

}

}

}

fn main() {

let greeting = Greeting::new("world!");

println!("Hello, {}", greeting.name);

}

```

Rust always makes me think my coding skills are a little rusty

why?

It's too hard:(

Oh, just take your time. Theres a lot of patterns in rust, after a while you recognize them. But at first it looks almost pointless. Rust has many redeeming qualities for a systems programming language.

Yeah man, the learning curve is insane

join the club man. luckily the compiler catches _most_ of our dumb mistakes.