mirror of
https://github.com/Estom/notes.git
synced 2026-02-04 11:04:21 +08:00
21 lines
234 B
Go
21 lines
234 B
Go
/**
|
|
* @Author:zhoutao
|
|
* @Date:2020/12/12 下午2:53
|
|
* @Desc:
|
|
*/
|
|
|
|
package state
|
|
|
|
func ExampleWeek() {
|
|
ctx := NewTodayContext()
|
|
todayAndNext := func() {
|
|
ctx.Today()
|
|
ctx.Next()
|
|
}
|
|
|
|
for i := 0; i < 8; i++ {
|
|
todayAndNext()
|
|
}
|
|
|
|
}
|