Hi,
 
I'm beginning to study Haskell, For the following
 

a = [1,2,3]

b = "there"

 

do x <- a

      y <- b 

     return (x , y)

Winhugs cannot run it. Gives

 Syntax error in input (unexpected backslash (
lambda))