
8 Mar
2015
8 Mar
'15
7:22 a.m.
Try
foldl (*) 1 [1,2,4,8,32,64,128,256,512,1024,2048,4906,8192]
and then
foldl (*) 1 [1,2,4,8,32,64,128,256,512,1024,2048,4906,8192] :: Int
what do you see? You might want to check with
:t foldl (*) 1 [1,2,4,8,32,64,128,256,512,1024,2048,4906,8192]
next Am 08.03.2015 um 11:59 schrieb m00nlight:
foldl (*) 1 [1,2,4,8,32,64,128,256,512,1024,2048,4906,8192]