I\'m writing this function len which calculates the length of a list in GHCi.
len [] = 0 len [x] = 1 len (x:xs) = 1 + len xs
I tried to call