13 lines
118 B
Go
13 lines
118 B
Go
package main
|
|
|
|
import (
|
|
"fmt"
|
|
"time"
|
|
)
|
|
|
|
func main() {
|
|
t := time.Now()
|
|
h, m, s := t.Clock()
|
|
fmt.Println(h, m, s)
|
|
}
|