summaryrefslogtreecommitdiff
path: root/files/practicum/ZFRemoveAt.icl
blob: 60f59c97923ff6efde7ff833406f24c447b02654 (plain) (blame)
1
2
3
4
5
6
7
8
implementation module ZFRemoveAt

import StdEnv

Start = removeAt 101 [1 .. 100] == removeAt2 101 [1 .. 100]

removeAt2 :: Int [a] -> [a]
removeAt2 ...