1
0
mirror of https://github.com/tiyn/wiki.git synced 2025-10-09 17:38:14 +02:00
Files
wiki/wiki/programming_language/golang.md

424 B

GoLang

GoLang is a common programming language.

Setup

To get go working you basically just need to install Go. Make sure to set the GOPATH and the GOBIN variable and add the last to the Path by adding the following to your .profile:

export GOPATH="${HOME}/go"
export GOBIN="${GOPATH}/bin"
export PATH="${GOBIN}:${PATH}"

You can move the GOPATH where you want.