비단 go 언어 뿐만 아니라 모든 프로그래밍 언어에서 제일 먼저 입력해보는 것은 "hello world" 일 것이다. 그래서 go를 시작했기 때문에 go로도 hello world를 작성해보고자 한다. 우선 go파일을 만들고 함수를 하나 만들 것이다.package greetingsimport "fmt"// Hello returns a greeting for the named person.func Hello(name string) string { // Return a greeting that embeds the name in a message. message := fmt.Sprintf("Hi, %v. Welcome!", name) return message}(위의 코드는 나의 사랑 고랭 공식..