What I enjoy most in Ruby is working with date and time objects.
The standard library implements time arithmetic especially elegantly: adding and subtracting seconds, days, and months.
I've never seen anything like this in any other language, where it looks so clear, concise, and beautiful:
```ruby
require 'time'
date = Time.now.to_date
date + 3 # 3 days from now
date - 3 # 3 days ago
date >> 6 # 6 months from now
date << 6 # 6 months ago
```







