浏览代码

Fixed type error in example program

Getty Ritter 8 年之前
父节点
当前提交
9958ca9f66
共有 1 个文件被更改,包括 1 次插入1 次删除
  1. 1 1
      example/example.hs

+ 1 - 1
example/example.hs

@@ -77,7 +77,7 @@ mkLangPrinter
 
 main :: IO ()
 main = do
-  sExprText <- pack . head <$> getContents
+  sExprText <- pack <$> getContents
   either putStrLn print (decode myLangParser sExprText)
 
 {-