mirror of
https://github.com/zyedidia/micro
synced 2024-11-05 17:41:24 +00:00
10 lines
117 B
Go
10 lines
117 B
Go
package main
|
|
|
|
import (
|
|
"fmt"
|
|
"time"
|
|
)
|
|
|
|
func main() {
|
|
fmt.Println(time.Now().Local().Format("January 02, 2006"))
|
|
}
|