Running ghc 6.6.1<br>On Windows Vista<br><br>I get this error when I run: ghc Main.hs<br><br>gcc: installation problem, cannot exec `as&#39;: No such file or directory<br><br>On this code:<br><br>module Main where<br><br>main = do
<br>&nbsp; putStrLn &quot;Please enter your name: &quot;<br>&nbsp; name &lt;- getLine<br>&nbsp; putStrLn (&quot;Hello, &quot; ++ name ++ &quot;, how are you?&quot;)<br><br><br>What is my problem?<br>