I have developed a haskell application which is tested with WinHugs interpreter working fine .. when i try to comiple the same application using WinGHCi it prompts a error
lexical error in string/character literal at character '\t'
I have used \t in IO Program to display text
Example :- putStr "\n \n \t \t Hello ! "
Any solutions ?
GHCiits a compiler r8 ? :-omenumust not be indented and second a string must end on the same line, except if you're using a `\` at the end of the line and a second one at the beginning of the next line to continue the string.