added practicum files, updated gitignore
[fp1415.git] / files / practicum / ZFUpdateAt.icl
1 implementation module ZFUpdateAt
2
3 import StdEnv
4
5 Start = updateAt2 300 42 [100,90 .. 0] == updateAt 300 42 [100,90 .. 0]
6
7 updateAt2 :: !Int a ![a] -> [a]
8 updateAt2 ...