// 언어: go lang // 에디터: vs code // 에러 메세지: go: cannot find main module; see 'go help modules' Build process exiting with code: 1 signal: null Hello world에서 오류를 만나다니.. // 해결방법 cmd 창을 열어서 go env -w GO111MODULE=auto 로 설정을 바꿔주면 된다. // 해결과정 처음에 검색을 했더니 한글로 된 문서는 없었다.. github.com/golang/go/issues/31997 question: "go: cannot find main module; see 'go help modules'" · Issue #31997 · golang/go What did yo..