-- ListW[ǂݍ
:module List
-- filter
filter (\x -> mod x 2 == 0) [0..10]
-- initsAtails
inits "abcdefgh"
tails "abcdefgh"
-- zipAzipWith
zip [1, 2, 3, 4] [2, 4, 6, 8]
zipWith (+) [1, 2, 3, 4] [2, 4, 6, 8]
-- concatAconcatMap
concat [[1, 2], [3, 4, 5], [6, 7, 8, 9]]
concatMap show [[1, 2], [3, 4, 5], [6, 7, 8, 9]]
concat ["This ", "is ", "a ", "pen."]
-- nubAgroup
nub [1, 1, 2, 3, 4, 3]
group [1, 1, 2, 3, 4, 3]
-- sumAproductAandAor
and [True, True, False]
or  [True, True, False]
-- intersperseAtranspose
intersperse 1 [1, 2, 3, 4]
intersperse ',' "abc"
transpose [[1, 2, 3], [4, 5, 6]]
:l

