Remove First Element List Haskell

[Solved] Remove First Element List Haskell | Haskell - Code Explorer | yomemimo.com
Question : remove first element list haskell

Answered by : marton

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

Source : https://wiki.haskell.org/How_to_work_on_lists | Last Update : Wed, 21 Oct 20

Answers related to remove first element list haskell

Code Explorer Popular Question For Haskell