Date in Go

Posted by GoDoc
Public (Editable by Users)

Date returns the Time corresponding to

Go
Edit
package main

import (
	"fmt"
	"time"
)

func main() {
	t := time.Date(2009, time.November, 10, 23, 0, 0, 0, time.UTC)
	fmt.Printf("Go launched at %s\n", t.Local())
}