Get Minute Offset within Hour

Examples in Go
Minute returns the minute offset within the hour specified by t, in the range [0, 59].
package main

import (
	"fmt"
	"time"
)

func main() {

	now := time.Now()
	fmt.Println(now.Minute())
}