Skip to content

Instantly share code, notes, and snippets.

View uoojin95's full-sized avatar
🦉
Focusing

Eugene Moon uoojin95

🦉
Focusing
  • Included Health
  • Toronto, ON
  • 06:18 (UTC -12:00)
  • LinkedIn in/eugene-moon
View GitHub Profile
@uoojin95
uoojin95 / Yujin.go
Last active September 22, 2024 21:28
type Yujin struct { lastCoffeeAt time.Time }
func (y *Yujin) IsProductive() bool {
return time.Since(y.lastCoffeeAt) < (time.Hour * 3)
}
def testFunction(number):
if number < 0:
return "number is negative"
else:
return "number is positive"
return "wat?"