See Original text in context
method first-date-in-month(Date: --> Date)
Returns the first date in the month of the Date
object. Otherwise, returns the invocant if the day value is already the first day of the month.
say Date.new('2015-11-24').first-date-in-month; # OUTPUT: «2015-11-01»