Files
headfirstgo/chapter2/time.go
Archie Fox 2e7b8722ca Init commit
2025-01-30 12:04:39 +03:00

14 lines
153 B
Go

package main
import (
"fmt"
"time"
)
func main() {
var now time.Time = time.Now()
var year int = now.Year()
fmt.Println(year)
fmt.Println(now)
}