package main import ( "fmt" "hackdaworld.org/hackbard/go-intro/world" "time" ) func main() { fmt.Printf("Hello, %s", world.Announce()) fmt.Printf(" at %s.\n", time.Now()) }