Skip to content

Commit 778fd6d

Browse files
committed
we can even separate the parser to a separate file.
1 parent 86263cc commit 778fd6d

File tree

1 file changed

+6
-2
lines changed

1 file changed

+6
-2
lines changed

polymorphism/df.hs

+6-2
Original file line numberDiff line numberDiff line change
@@ -10,8 +10,12 @@ readFrame fn = do
1010
str <- readFile fn
1111
let (hl:tl) = lines str
1212
return $ case hl of
13-
('I':_) -> FrameI $ map read tl
14-
('D':_) -> FrameD $ map read tl
13+
('I':_) -> FrameI $ reader tl
14+
('D':_) -> FrameD $ reader tl
15+
16+
where
17+
reader :: Read a => [String] -> [a]
18+
reader = map read
1519

1620
main :: IO ()
1721
main = do

0 commit comments

Comments
 (0)