반업주부의 일상 배움사
[Golang] 단숨에 Hello, Go World! :: 고로 고고! 본문
반응형
저는 Mac을 써요. 다운로드하고 설치할께요.
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
'IT 인터넷 > Golang' 카테고리의 다른 글
[Golang] echo 샘플2 (0) | 2022.05.15 |
---|---|
[Golang] echo 샘플 (0) | 2022.05.15 |
[Golang] 텍스트 파일 읽고 랜덤 아이템 추출하기 (0) | 2022.04.29 |
[Golang] 웹사이트 헬스 체크 :: Website Health Check (0) | 2021.05.05 |
[Golang] VSCode에서 실행 시 에러가 난다면... (7) | 2021.04.23 |
Comments