I'm learning Haskell for my Introduction to Programming and Algorithms course in my University degree. I was wondering if it is possible for when inputting a string, for example, in a small program to find out what you have for classes at a given time and day:
timetable time day
does the day variable have to be put in quotes for a string input/result? Is there any way for
timetable 1100 Friday
to work as opposed to
timetable 1100 "Friday"
which is the way I have things running now?