go{version}.windows-amd64.msi 파일 설치
(최신)
# /usr/local 위치에서 다운로드 한다.
wget {os에 맞는 버전} # <https://go.dev/dl/>
tar -xvf {go.tar}
# $HOME/.profile or /etc/profile
export PATH=$PATH:/usr/local/go/bin
# ~/.zshrc or ~/.bashrc
export GOPATH=$HOME/go
export PATH=$PATH:$GOPATH/bin
source {~/.zshrc or ~/.bashrc}
vscode → Ctrl + Shift + p → Go:Install/Update Tools 입력
<aside> 💡 외부로 function을 export 하려면 대문자로 시작해야함
</aside>