date :: Date :: diff_months
self
other
# Difference in months between `self` and `other` fun diff_months(other: Date): Int do var y_out = year - other.year y_out = y_out * 12 return month - other.month + y_out end