diff options
author | dan <[email protected]> | 2024-04-20 13:58:34 -0400 |
---|---|---|
committer | dan <[email protected]> | 2024-04-20 13:58:34 -0400 |
commit | 9331780bedd675ece82aebd1f12ce8b053a618f8 (patch) | |
tree | 0904c84c1207aad92585b4c9c2017db570ce4b50 /app/Repl.hs | |
parent | 77a0492e543af59a2f3ed132e2ce08ac9816d8fc (diff) | |
download | bizexp-9331780bedd675ece82aebd1f12ce8b053a618f8.tar.gz bizexp-9331780bedd675ece82aebd1f12ce8b053a618f8.tar.bz2 bizexp-9331780bedd675ece82aebd1f12ce8b053a618f8.zip |
feat: project also builds a "repl" executable
Diffstat (limited to 'app/Repl.hs')
-rw-r--r-- | app/Repl.hs | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/app/Repl.hs b/app/Repl.hs new file mode 100644 index 0000000..9f26d78 --- /dev/null +++ b/app/Repl.hs @@ -0,0 +1,6 @@ +module Main where + +import BizExpr (repl) + +main :: IO () +main = repl |