package main
 
import (
  "fmt"
  "time"
)
 
func main() {
  fmt.Println("Hello, go!")
  now := time.Now()
  fmt.Println(now)
}