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 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
@movq@www.uninformativ.de Oh! LOL π I thought that was serious π
@eldersnake@yarn.andrewjvpowell.com Yeah there are some nice Go web frameworks for sure π I donβt use any myself because I like to get down and dirty and build my own libraries or use simple things but nevertheless things like Gin are pretty decent π