POSITION:028,114
COLOUR:EUPHORIA
TEXT:00,sequence list_of_days, list_of_months, month_name
TEXT:16,atom days_in_month
TEXT:32,list_of_months = {"January","February","March","April","May","June",
TEXT:16,       "July","August","September","October","November","December"}
TEXT:16,list_of_days = {31,28,31,30,31,30,31,31,30,31,30,31}
TEXT:32,days_in_month = list_of_days[3]
TEXT:16,month_name = list_of_months[3]
COLOUR:STANDARD
TEXT:32,This program example obtains the name and number of days for the month
TEXT:16,March from two sequence variables ("list_of_months" and "list_of_days")
TEXT:16,that were previously assigned data. "month_name" is given the value of
TEXT:16,the third element of "list_of_months", and "days_of_month" is given the
TEXT:16,third element of "list_of_days". Notice both receiving variables have the
TEXT:16,correct variable type needed to accept the values. This is important!

