[paintTable
thomashartman1@gmail.com**20080917132934] hunk ./src/View.hs 85
-paintTable t = "
" ++ x ++ ""
- td x = "" ++ x ++ " | "
+paintTable cells = table . concat . map (tr . concat) . ( (map . map) td ) $ cells
hunk ./src/View.hs 87
+tr x = "" ++ x ++ "
"
+td x = "" ++ x ++ " | "
+table x = ""