aboutsummaryrefslogtreecommitdiff
path: root/src/Language/SimpleShell/Parser/Root.hs
diff options
context:
space:
mode:
authorEinhard Leichtfuß <alguien@respiranto.de>2025-05-21 11:32:24 +0200
committerEinhard Leichtfuß <alguien@respiranto.de>2025-05-21 11:32:24 +0200
commit1f5c0696463a48d9fcf7410aeaecaf83c2eef1bc (patch)
tree464f8d39570ab84882bbcbfc0e8bf30c7337a642 /src/Language/SimpleShell/Parser/Root.hs
parent689732c084b9bc017b9015b8b151088fe057464c (diff)
Add Module parser skeleton
Diffstat (limited to 'src/Language/SimpleShell/Parser/Root.hs')
-rw-r--r--src/Language/SimpleShell/Parser/Root.hs12
1 files changed, 12 insertions, 0 deletions
diff --git a/src/Language/SimpleShell/Parser/Root.hs b/src/Language/SimpleShell/Parser/Root.hs
new file mode 100644
index 0000000..9fa32ff
--- /dev/null
+++ b/src/Language/SimpleShell/Parser/Root.hs
@@ -0,0 +1,12 @@
+module Language.SimpleShell.Parser.Root
+ ( RootParser
+ )
+where
+
+
+import Data.Void (Void)
+import Data.Text (Text)
+import Text.Megaparsec (Parsec)
+
+
+type RootParser = Parsec Void Text