Conversation
https://go.dev/doc/tutorial/create-module WHY IS GO LIKE THIS I JUTS WANT TO FUCKING BUILD A PROGRAM AND GET A BINARY FUCKING HELL
3
0
1
@meso ummm, if you want to compile it, you can run "go build [program name]", i think
1
0
0

the dan ryan (horrid chode: https://fsebugoutzone.org/apotheosis)

@meso @lucy go mod download to download dependencies i think
1
0
1

the dan ryan (horrid chode: https://fsebugoutzone.org/apotheosis)

@meso @lucy are you in the same directory as the go.mod?
1
0
0

@meso weird right? There’s a reason for that.

It wasn’t created as a new language, it was created to solve a human problem and is opinionated about how things should be done. Because it’s meant to be.

Go is a project to make building production software easier and more productive.

To this day I have not found a real world use for golang personally but I do like the idea in the context of a business/project https://youtu.be/yE5Tpp2BSGw

1
1
0

the dan ryan (horrid chode: https://fsebugoutzone.org/apotheosis)

@meso @lucy try go build
1
0
0
@kirby @lucy actually uh? seems to have worked, just didn't tell me about it. not sure at what point of running all the commands i can think of in every directory it did that
1
0
0
@meso
go get -d ./...
go build

and then run the executable. (could also "go run" to build and run whatever you prefer)
0
0
1