반업주부의 일상 배움사

[Golang] 단숨에 Hello, Go World! :: 고로 고고! 본문

IT 인터넷/Golang

[Golang] 단숨에 Hello, Go World! :: 고로 고고!

Banjubu 2020. 8. 11. 12:04
반응형

 

저는 Mac을 써요. 다운로드하고 설치할께요.

https://golang.org/dl/

 

Downloads - The Go Programming Language

Downloads After downloading a binary release suitable for your system, please follow the installation instructions. If you are building from source, follow the source installation instructions. See the release history for more information about Go releases

golang.org

 

콘솔에서 go 하니까 나오네요.

 

바탕화면에 main.go 파일을 만들었어요.

package main

import "fmt"

func main() {
    fmt.Printf("hello, world\n")
}

 

콘솔에서 빌드할께요.

$ cd /Users/사용자명/Desktop
$ go build main.go

 

실행파일이 만들어 졌어요.

 

실행하면 결과가 출력돼요.

 

p.s. 참 쉽네요.

 

영어, 중국어 공부중이신가요?

홈스쿨 교재. 한 권으로 가족 모두 할 수 있어요!

 

한GLO 미네르바에듀 : 네이버쇼핑 스마트스토어

한글로 영어가 된다?! 한글로[한GLO]는 영어 중국어 일어 러시아어 스페인어가 됩니다!!

smartstore.naver.com

 

반응형
LIST
Comments