Skip to content

Instantly share code, notes, and snippets.

@uoojin95
Last active September 22, 2024 21:28
Show Gist options
  • Save uoojin95/de156499665f76583cd75758f9340d7f to your computer and use it in GitHub Desktop.
Save uoojin95/de156499665f76583cd75758f9340d7f to your computer and use it in GitHub Desktop.
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