// The first monday can be 1-7th, the second 8-14th day of the month.
c.AddFunc("0 30 * 8-14 * 1", func() { fmt.Println("second monday of every 
month") })

// The first tuesday can be 1-7th, the second 8-14th, the third 15-22th.
c.AddFunc("0 30 * 15-22 * 2", func() { fmt.Println("3rd tuesday of every 
month") })

-- 
You received this message because you are subscribed to the Google Groups 
"golang-nuts" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to [email protected].
For more options, visit https://groups.google.com/d/optout.

Reply via email to