# Homebrew가 설치되어 있지 않다면 먼저 설치
/bin/bash -c "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/HEAD/install.sh)"
# Go 설치
brew install go
go version
# Go 작업 디렉토리 설정 (선택사항이지만 권장)
mkdir -p $HOME/go/{bin,src,pkg}
# 환경 변수 설정 (~/.zshrc 또는 ~/.bash_profile에 추가)
echo 'export GOPATH=$HOME/go' >> ~/.zshrc
echo 'export PATH=$PATH:$GOPATH/bin' >> ~/.zshrc
source ~/.zshrc