how would i enter one element of a list into function at a time in haskell code example
Example: remove first element list haskell
a = [1, 2, 3, 4]
b = tail a
-- b == [2, 3, 4]
a = [1, 2, 3, 4]
b = tail a
-- b == [2, 3, 4]