Entfernen Sie die erste Elementliste Haskell
a = [1, 2, 3, 4]
b = tail a
-- b == [2, 3, 4]
Marton
a = [1, 2, 3, 4]
b = tail a
-- b == [2, 3, 4]