Go1 A Tour of Go -welcome 인터넷에 끊겨 있더라도 로컬에서 실행 가능하다. go install golang.org/x/website/tour@latest 2009 11 10 23Z 에 이 웹 고 환경은 시작 되 었다. cpu 나 메모리 사용 제한이 있으며, 외부 네트워크 호스트와 연결 안됨. -packages package main import ( "fmt" "math/rand" ) func main() { fmt.Println("My favorite number is", rand.Intn(10)) } fmt는 표준 입출력 패키지. 패키지를 불러와 사용할땐 임포트 패스의 마지막 앨리먼트, 그러니까 math/rand로 불러온건 rand.Intn처럼 사용한다. -imports import ( "fmt" "math" ).. 2023. 5. 18. 이전 1 다음