I tried the following code in ghci in ubuntu.
data Btree a=Ebt|Node a (Btree a)(Btree a)
t=Node 10( Node 20 Ebt Ebt) (Node 30 Ebt Ebt)
The compiler shows the error: Malformed head of type or class declaration
The compiler compiles others code well. Can you please help me to find out the problem?