You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
days = "Mon Tue Wed Thur Fri Sat Sun" # declares variable days and sets it equal to a string containing the abbreviated form of days of the week
months = "Jan\nFeb\nMar\nApr\nMay\nJun\nJul\nAug" # sets the variable months to the a string value containing abbreviated forms of each month of the year each starting on a new line
puts "Here are the days: #{days}" # outputs a string replacing #{days} with the value of variable days
puts "Here are the months: #{months}" #outputs a string replacing #{months} with the value of the variable months