It won't hurt to try

go import 본문

Go

go import

yongki.doki 2022. 3. 27. 14:12

library

https://pkg.go.dev/

 

pkg.go.dev

 

pkg.go.dev

자주 사용하는 라이브러리

  • fmt : Package fmt implements formatted I/O with functions analogous to C's printf and scanf. The format 'verbs' are derived from C's but are simpler. (입출력 포멧터)


error

애러 내용

go.mod file not found in current directory or any parent directory; see 'go help modules'

해결

go env -w GO111MODULE=auto

 

import

main.go
something.go

300x250
300x250

'Go' 카테고리의 다른 글

go if  (0) 2022.03.27
go for  (0) 2022.03.27
go function  (0) 2022.03.27
go variable  (0) 2022.03.27
go install to build  (0) 2022.03.26
Comments