Programming
How to show Week Numbers in Go (Golang)
A quick guide to finding or calculating the current ISO week number within Go (Golang).
code snippet
_, week := time.Now().ISOWeek()
fmt.Println(week)