# frozen_string_literal: true class Date # @return [String] - Full day word def day_of_week strftime('%A') end end class DateTime # @return [String] - Full day word def day_of_week strftime('%A') end end