Source file tour/welcome/sandbox.go
1 //go:build OMIT 2 3 package main 4 5 import ( 6 "fmt" 7 "time" 8 ) 9 10 func main() { 11 fmt.Println("Welcome to the playground!") 12 13 fmt.Println("The time is", time.Now()) 14 } 15
1 //go:build OMIT 2 3 package main 4 5 import ( 6 "fmt" 7 "time" 8 ) 9 10 func main() { 11 fmt.Println("Welcome to the playground!") 12 13 fmt.Println("The time is", time.Now()) 14 } 15