visualhaskell

Visual Haskell 2008

Is Haskell for Visual Studio 2005 compatible with VS2008 SP1 ? ...

Casting in Haskell

a) I need to cast from String to int in haskell. I have a function that gets the third word in a sentence as a string, but my third word in all my sentences are numbers (int), how can I cast from string to int so then I can use the number afterwards to do operations like add or mult? getThirdWord :: String -> String getThirdWord = head ...

read token after token from a file in haskell

Hi everybody! I want to read from a file in Visual Haskell Studio, token after token, by loading each time the next token in a variable. For example: getNextToken. Thanks!! :) ...