micro/tools/build-date.go

11 lines
117 B
Go
Raw Normal View History

package main
import (
"fmt"
"time"
)
func main() {
fmt.Println(time.Now().Local().Format("January 02, 2006"))
}