
2 Mar
2014
2 Mar
'14
3:12 p.m.
Hi, W dniu 02.03.2014 21:06, Roelof Wobben pisze:
Thanks.
This does the job :
import Data.Char
x = map isLower "ABCde":[] -- Note that comments are preceded by two hyphens {- or enclosed in curly brace/hypens pairs. -} main = print x
You have a list of lists of booleans: [[Bool]]. You should get a list of booleans: [Bool] instead. Regards, Emanuel