목록Study/Go (12)
오늘도 한 뼘 더

# 문제 Golang 프로젝트를 새로 만들고 다음 코드에 대해 main.go를 실행하는 중에 다음과 같은 에러가 발생했다. package main import ( "fmt" ) func main() { fmt.Println("Hello") } 에러 메시지 # 해결방법 go에서 제공하는 문서를 참고하여 진행하였다. https://go.dev/blog/using-go-modules Using Go Modules - The Go Programming Language Using Go Modules Tyler Bui-Palsulich and Eno Compton 19 March 2019 Introduction This post is part 1 in a series. Note: For documentation o..

1. Go 언어 설치하기 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 Go 언어 페이지로 접속하게 되면 다음과 같은 이미지가 띄게 됩니다. Go 언어를 사용하기 위한 환경을 만들어주는 작업이 완료되게 됩니다. 2. ..