j
k
j a
j l
Hi
subst e l' = concat.map (\x->if x==e then l' else [x])
subst e l' = concatMap (\x->if x==e then l' else [x]) Let's save an extra character :) Thanks Neil
Back to the thread
Back to the list