
22 Feb
2002
22 Feb
'02
10:36 a.m.
"Juan" == Juan M Duran
writes:
Juan> then if I have something like "12 32\n15..." with words I get Juan> ["12","32","15"...] Juan> which is cool but not exactly what I need. Would you help me? just compose it with (map read). Function read takes a string and converts it to the target type, presumed this type belongs to the type class Read and the string is a correct printing of an element of this type. -- Christoph