Source file tour/basics/packages.go
1 //go:build OMIT 2 3 package main 4 5 import ( 6 "fmt" 7 "math/rand" 8 ) 9 10 func main() { 11 fmt.Println("My favorite number is", rand.Intn(10)) 12 } 13
1 //go:build OMIT 2 3 package main 4 5 import ( 6 "fmt" 7 "math/rand" 8 ) 9 10 func main() { 11 fmt.Println("My favorite number is", rand.Intn(10)) 12 } 13