I am trying to create a factorial function in GHC.  I am following the
online learnyouahaskell.com book (specifically types-and-typeclasses
page).

Bear in mind this is my day 1 of learning Haskell.

The book suggests:

factorial :: Integer -> Integer
factorial n = product [1..n]

But if I enter first line then press <Enter> I see:
<interactive>:1:1 Not in scope: 'factorial'

What am I doing wrong?

Angus

_______________________________________________
Haskell mailing list
Haskell@haskell.org
http://www.haskell.org/mailman/listinfo/haskell

Reply via email to