Golang (or just Go)
Cheat Sheet
- Enable dependency tracking by creating a go.mod file.
go mod init <module's module path>
- Build an executable file by compiling the packages and dependencies.
go build -o <output file name>
- Run a program
go run <file.go>