In-reply-to » Okay so I have no clue about Rust nor am I a very proficient programmer, but surely this is even more of a joke than this repo portrays it to be? It can't actually be this ridiculous to make a hello world in Rust surely 😅

@eldersnake@we.loveprivacy.club It is a joke.

$ mkdir foo && cd foo
$ cargo init
     Created binary (application) package
$ cargo run
   Compiling ach v0.1.0 (/tmp/tmp/ach)
    Finished dev [unoptimized + debuginfo] target(s) in 1.17s
     Running `target/debug/ach`
Hello, world!
$ cat src/main.rs
fn main() {
    println!("Hello, world!");
}
$

(Yes, a “hello world” is the default code created by cargo init.)

⤋ Read More