중고 신입이 개발해보기..

Go lang을 설치해보자 본문

Code Language/Go Lang

Go lang을 설치해보자

rootkaien 2020. 7. 28. 15:18

mac에 go를 설치

 

https://golang.org/

 

The Go Programming Language

Download Go Binary distributions available for Linux, macOS, Windows, and more. // You can edit this code! // Click here and start typing. package main import "fmt" func main() { fmt.Println("Hello, 世界") } Hello, World! Conway's Game of Life Fibonacci

golang.org

 

로 들어가면 ..  https://golang.org/dl/ 

알맞는거 받아서 설치하면된다. 

 

$ go version
go version go1.14.6 darwin/amd64

 

설치 완료~!!  쉽네. ㅎㅎㅎㅎ 

Comments