2
votes
1answer
281 views

Ambiguous occurrence `Just'

I am an absolute beginner. Going through LYAH using emacs. My current Set up: Ubuntu 12.04 LTS (Use Experience - beginner) GNU Emacs 23 (Use Experience - beginner) able to work in haskell major ...
3
votes
1answer
279 views

Compiling Haskell code in Cygwin, and some other bugs in Haskell Platform on Windows

I am trying to compile a simple hello world program in Haskell, with Haskell Platform 2011.2.0.1. If I load the code in WinGHCi, and use the GUI to compile, the .exe is created. Then I can run the ...
8
votes
3answers
765 views

Haskell / GHCi - loading modules from different directories

My haskell application has the following directory structure: src/ utils/Utils.hs subsystem/Subsystem.hs The Subsystem module imports Utils module. I would like to hand test this code in ...
3
votes
1answer
512 views

head and tail calls on empty list bringing an exception

I'm following a tutorial. (Real World Haskell) And I have one beginner question about head and tail called on empty lists: In GHCi it returns exception. Intuitively I think I would say they both ...