Answers for "remove first element of list in 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

Code answers related to "remove first element of list in haskell"

Browse Popular Code Answers by Language