Team Project A
Due Monday, September 16, 4:29pm, FH303
Diction Analysis
In addition to aspects of Haskell discussed in Lessons 1-6 plus Lesson 7 of the Haskell text (yes, you may take advantage of the material in Lesson 7 now) and those permitted for Individual Project 2, you may use
"a's or an's |" ++ "***"delivers
"a's or an's |***"
concat["Last","Train", "To", "Yuma"]delivers
"LastTrainToYuma"like unwords, but without inserting the spaces.
unlines["first line", "second line", "third line"]delivers
"first line\nsecond line\nthird line"like unwords, but with newline characters instead of spaces as separators
Implementation notes.