diff options
author | dan <[email protected]> | 2021-04-15 08:09:59 +0200 |
---|---|---|
committer | dan <[email protected]> | 2021-04-15 08:09:59 +0200 |
commit | a26253c1efe45459b46edd4d06a4ee03d99eb6dd (patch) | |
tree | ea1981ab308b24ed85317c556b53f6ce09a72d0c /app/Main.hs | |
parent | 638e8ff79ab25db779fa272d61767ab49ac8d751 (diff) | |
download | bizexp-a26253c1efe45459b46edd4d06a4ee03d99eb6dd.tar.gz bizexp-a26253c1efe45459b46edd4d06a4ee03d99eb6dd.tar.bz2 bizexp-a26253c1efe45459b46edd4d06a4ee03d99eb6dd.zip |
(coerceTo $ StrVal 1) ::Maybe Bool -- still doesn't work
Diffstat (limited to 'app/Main.hs')
-rw-r--r-- | app/Main.hs | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/app/Main.hs b/app/Main.hs index 60d904e..971bed7 100644 --- a/app/Main.hs +++ b/app/Main.hs @@ -1,8 +1,6 @@ module Main where -import qualified MyLib (someFunc) +import qualified BizExpr (eval, repl) main :: IO () -main = do - putStrLn "Hello, Haskell!" - MyLib.someFunc +main = BizExpr.repl |