Go 언어의 Hello World를 3분 만에 사용해 보세요.
2775 단어 5HelloWorld
Go 언어로 Hello World 해보고 싶어졌기 때문에 도전해 본다.
환경
설치
brew에 기대.
$ brew install go
==> Downloading https://homebrew.bintray.com/bottles/go-1.6.el_capitan.bottle.2.
######################################################################## 100.0%
==> Pouring go-1.6.el_capitan.bottle.2.tar.gz
==> Caveats
As of go 1.2, a valid GOPATH is required to use the `go get` command:
https://golang.org/doc/code.html#GOPATH
You may wish to add the GOROOT-based install location to your PATH:
export PATH=$PATH:/usr/local/opt/go/libexec/bin
==> Summary
🍺 /usr/local/Cellar/go/1.6: 5,771 files, 324.9M
설치 완료. 정말 이것으로 괜찮습니까? 라는 수준.
$ which go
/usr/local/bin/go
명령도 실행할 수 있을 것 같다.
Hello World 준비
우선 hello.go를 작성해 보겠습니다.
hello.go
package main
import "fmt"
func main() {
fmt.Printf("Hello World\n")
}
실행
실행해보십시오.
$ go run hello.go
Hello World
이미 할 수 있었다!
바이너리를 만들어 실행도 할 수 있는 것 같다.
$ go build hello.go
$ ls
hello* hello.go
오, 바이너리가 생겼어. 조속히, 갓 만든 바이너리를 실행해 본다.
$ ./hello
Hello World
순식간에 할 수 있었다!
참고
Reference
이 문제에 관하여(Go 언어의 Hello World를 3분 만에 사용해 보세요.), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다 https://qiita.com/techys/items/44a712a76859fe0a9dea텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
우수한 개발자 콘텐츠 발견에 전념 (Collection and Share based on the CC Protocol.)