ref: e9035e07218ece19fce41fb5987d4ad9000b02be
parent: 0249553f5b062c4fbc0fb86134dd42545ff466d1
author: Lennart Augustsson <lennart.augustsson@epicgames.com>
date: Mon Nov 27 16:56:38 EST 2023
Don't print extra stuff.
--- a/Example.hs
+++ b/Example.hs
@@ -7,7 +7,7 @@
main :: IO ()
main = do
- putStrLn $ "word size=" ++ show _wordSize ++ ", os=" ++ if _isWindows then "Windows" else "Unix-like"
+ --putStrLn $ "word size=" ++ show _wordSize ++ ", os=" ++ if _isWindows then "Windows" else "Unix-like"
let
rs = map fac [1,2,3,10]
putStrLn "Some factorials"
--
⑨