我是haskell的新手,在维基百科上看到了一些代码
data Tree a = Tip | Node a (Tree a) (Tree a) deriving (Show,Eq)
height Tip = 0
height (Node _ xl xr) = 1 + max (height xl) (height xr)
来源:http ://www.csse.monash.edu.au/~lloyd/tildeFP/Haskell/1998/Tree/
我想知道一旦我从文件运行代码,我必须输入 GHCI 来测试这段代码