golang-examples/time/time.go

12 lines
144 B
Go
Raw Normal View History

2022-07-22 11:07:16 +00:00
package main
import (
"fmt"
"time"
)
func main() {
fmt.Println("Welcome to the playground!")
fmt.Println("The time is", time.Now())
}