print time in golang

package main

import (
    "fmt"
    "time"
)

func main() {
    fmt.Println("Current time is:", time.Now())
}