Difference in months between self and other

Property definitions

date $ Date :: diff_months
	# 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
lib/date/date.nit:121,2--127,4