↳
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
⤋ Read More
hello world
in Rust surely 😅
@eldersnake@we.loveprivacy.club I’m afraid it is really 🤣
A “Hello World” in Go is just:
$ go mod init hello
$ cat > main.go <<EOF
package main
import "fmt"
func main() {
fmt.Println("Hello World")
}
$ go build
$ ./hello
Hello World