Guest User

Untitled

a guest
Jun 18th, 2018
91
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.20 KB | None | 0 0
  1. class Time
  2. def today?
  3. n = Time.now
  4. if mday == n.mday
  5. if mon == n.mon
  6. if year == n.year
  7. return true
  8. end
  9. end
  10. end
  11. return false
  12. end
  13. end
Add Comment
Please, Sign In to add comment