gdritter repos s-cargot / 9958ca9
Fixed type error in example program Getty Ritter 7 years ago
1 changed file(s) with 1 addition(s) and 1 deletion(s). Collapse all Expand all
7777
7878 main :: IO ()
7979 main = do
80 sExprText <- pack . head <$> getContents
80 sExprText <- pack <$> getContents
8181 either putStrLn print (decode myLangParser sExprText)
8282
8383 {-