-
-
Save jiaoyk/efd9cd1e1df64241a02b1af23c6ee86e to your computer and use it in GitHub Desktop.
Revisions
-
hosszukalman created this gist
Oct 24, 2019 .There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1,20 @@ package main import ( "fmt" "time" ) func main() { now := time.Now() year, month, _ := now.Date() endOfLastMonth := time.Date(year, month, 0, 0, 0, 0, 0, now.Location()) fmt.Printf("End of the last month: %s\n", endOfLastMonth) firstDayOfThisMonth := time.Date(year, month, 1, 0, 0, 0, 0, now.Location()) fmt.Printf("The fist day of the actual month: %s\n", firstDayOfThisMonth) endOfThisMonth := time.Date(year, month+1, 0, 0, 0, 0, 0, now.Location()) fmt.Printf("The end of this month: %s\n", endOfThisMonth) }