Son
Son

Reputation: 1863

Haskell error parse error on input `='

I'm new to Haskell and after starting ghci I tried:

f x = 2 * x

and I obtained:

<interactive>:1:4: parse error on input `='

which I don't understand.

Strangely, it worked well before. I suppose that I have done misconfigured Haskell. Reinstalling ghc6 doesn't solve the problem.

For information, I use Ubuntu 10.4 and the version of ghc6 is 6.12.1-12

Upvotes: 116

Views: 67136

Answers (4)

kennytm
kennytm

Reputation: 523224

In GHCi 7.x or below, you need a let to define things in it.

Prelude> let f x = x * 2
Prelude> f 4
8

Starting from GHC 8.0.1, top-level bindings are supported in GHCi, so OP's code will work without change.

GHCi, version 8.0.1.20161213: http://www.haskell.org/ghc/  :? for help
Prelude> f x = x * 2
Prelude> f 4
8

Upvotes: 161

glguy
glguy

Reputation: 1090

Starting in GHC 8.0.1 this would no longer generate an error.

Upvotes: 4

Raeez
Raeez

Reputation: 2423

A good rule of thumb for using ghci is that any code you enter should conform to do-block semantics; that is, you could assume syntactically that you're programming within the IO monad (if this is new terminology, don't worry! I'd highly recommend reading through this tutorial).

This answer illustrates this point with an example, and may provide more working insight into the nature of IO and ghci.

Upvotes: 21

dave4420
dave4420

Reputation: 47052

When you type into a Haskell source file,

f x = 2 * x

is correct.

When you type directly into ghci, you need to type let at the start of the line:

let f x = 2 * x

Upvotes: 50

Related Questions