mirror of
https://github.com/zyedidia/micro.git
synced 2026-02-04 22:20:20 +09:00
11 lines
117 B
Go
11 lines
117 B
Go
package main
|
|
|
|
import (
|
|
"fmt"
|
|
"time"
|
|
)
|
|
|
|
func main() {
|
|
fmt.Println(time.Now().Local().Format("January 02, 2006"))
|
|
}
|