diff options
author | Andreas Grois <andi@grois.info> | 2023-01-05 13:09:56 +0100 |
---|---|---|
committer | Andreas Grois <andi@grois.info> | 2023-01-05 13:09:56 +0100 |
commit | b73e98202ead097348472a3ad2bed4923b5f8f67 (patch) | |
tree | 116291f20c28d0261bdcd334bd2ba918b3df1c3d /Day11/app/Main.hs | |
parent | 52c1a7a1c1dcc3d7d7609727b43c9651b68732e4 (diff) |
Day11, MonkeyBrain unfinished
Diffstat (limited to 'Day11/app/Main.hs')
-rw-r--r-- | Day11/app/Main.hs | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/Day11/app/Main.hs b/Day11/app/Main.hs new file mode 100644 index 0000000..c7f9fa1 --- /dev/null +++ b/Day11/app/Main.hs @@ -0,0 +1,7 @@ +module Main where + +import MonkeyBrain (evaluateIntExpression, tryParseExpression, Expression, VariableNameValidator (..), VariableValues (..), Variable (..)) +import Data.Maybe (fromJust) + +main :: IO () +main = putStrLn "Hello, Haskell!"
\ No newline at end of file |