Answers for "drop haskell"

0

drop haskell

drop :: Int -> [a] -> [a]
>>> drop 5 [1,2,3,4,5,6,7,8,9]
[6,7,8,9]
Posted by: Guest on January-12-2022

Browse Popular Code Answers by Language