haudoing
0
Q:

haskell append to list

1 : [2, 3]
--return [1, 2, 3]
1
list = [1, 2, 3]

head :: [a] -> a
head (x:_) = x

head list -- 1
1
a = [1, 2, 3, 4]
b = tail a
  
-- b == [2, 3, 4]
1

Tags

New to Communities?

Join the community