Drop Haskell

[Solved] Drop Haskell | Haskell - Code Explorer | yomemimo.com
Question : drop haskell

Answered by : afonso-silva

drop :: Int -> [a] -> [a]
>>> drop 5 [1,2,3,4,5,6,7,8,9]
[6,7,8,9]

Source : | Last Update : Wed, 19 Jan 22

Answers related to drop haskell

Code Explorer Popular Question For Haskell