Last active
September 22, 2024 21:28
-
-
Save uoojin95/de156499665f76583cd75758f9340d7f to your computer and use it in GitHub Desktop.
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 characters
type Yujin struct { lastCoffeeAt time.Time } | |
func (y *Yujin) IsProductive() bool { | |
return time.Since(y.lastCoffeeAt) < (time.Hour * 3) | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment