added practicum files, updated gitignore
[fp1415.git] / files / practicum / ZFRemoveAt.icl
1 implementation module ZFRemoveAt
2
3 import StdEnv
4
5 Start = removeAt 101 [1 .. 100] == removeAt2 101 [1 .. 100]
6
7 removeAt2 :: Int [a] -> [a]
8 removeAt2 ...