Answers for "remove the first of a list haskell"

1

remove first element list haskell

a = [1, 2, 3, 4]
b = tail a
  
-- b == [2, 3, 4]
Posted by: Guest on October-14-2020

Browse Popular Code Answers by Language