This problem actually wasn’t as bad as I originally thought it would be.
ProjectEuler8.hs
I’m sure that there are better ways to go about solving this problem. I know that the String data type is stored as a list of Char type, so I should have been able to convert immediately from String to [Int] with a map function. Unfortunately I wasn’t able to get this conversion to work so I had to take extra steps to convert the String to [String].
Once I had a list of Int it was rather straight forward to create groups of 13 integers and mapproduct over them.