compute fp = do
text <- readFile fp
let (a,b) = sth text
let x = data b
--g <- x
putStr $ print_matrix $ fst $ head $ x
It works when i get only first element but i want do this for all element on the list of pair. When i write g<- x i got Couldn't match expected type `IO t0' with actual type [([[Integer]], [[Integer]])]
let x = data bI'm confused.datais a keyword in Haskell for defining types. That line is a syntax error as it stands. – Joey Adams Jun 18 '11 at 20:45