1. 설치

https://go.dev/doc/

1.1. Window

go{version}.windows-amd64.msi 파일 설치

1.2. Linux

(최신)

1.2.1. 설치

# /usr/local 위치에서 다운로드 한다.
wget {os에 맞는 버전} # <https://go.dev/dl/>
tar -xvf {go.tar}

1.2.2. 환경변수 추가

# $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}

1.2.3. vs code tool 설치

vscode → Ctrl + Shift + p → Go:Install/Update Tools 입력

Untitled

1.2.4. 실행

Untitled

2. 실행 원리

2.1. export

<aside> 💡 외부로 function을 export 하려면 대문자로 시작해야함

</aside>