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

import StdEnv

Start = updateAt2 300 42 [100,90 .. 0] == updateAt 300 42 [100,90 .. 0]

updateAt2 :: !Int a ![a] -> [a]
updateAt2 ...