summaryrefslogtreecommitdiff
path: root/src/Main.hs
diff options
context:
space:
mode:
authorEugen Wissner <belka@caraus.de>2024-07-21 16:15:17 +0200
committerEugen Wissner <belka@caraus.de>2024-07-21 16:15:17 +0200
commitbe4957ee599e7e14c934e61f3d91354760b38acd (patch)
treef8506ff75b5a4f1a502489e39f51a267d51ac69f /src/Main.hs
downloadelna-be4957ee599e7e14c934e61f3d91354760b38acd.tar.gz
Initial commit
Diffstat (limited to 'src/Main.hs')
-rw-r--r--src/Main.hs13
1 files changed, 13 insertions, 0 deletions
diff --git a/src/Main.hs b/src/Main.hs
new file mode 100644
index 0000000..bb8be4c
--- /dev/null
+++ b/src/Main.hs
@@ -0,0 +1,13 @@
+module Main where
+
+import Language.Elna.Parser (programP)
+import Text.Megaparsec (runParser, errorBundlePretty)
+import qualified Data.Text.IO as Text
+
+main :: IO ()
+main = Text.getContents
+ >>= withParseResult . runParser programP ""
+ where
+ withParseResult (Right _) = pure ()
+ withParseResult (Left errorBundle) =
+ putStr $ errorBundlePretty errorBundle