diff options
author | Einhard Leichtfuß <alguien@respiranto.de> | 2025-05-21 11:32:24 +0200 |
---|---|---|
committer | Einhard Leichtfuß <alguien@respiranto.de> | 2025-05-21 11:32:24 +0200 |
commit | 1f5c0696463a48d9fcf7410aeaecaf83c2eef1bc (patch) | |
tree | 464f8d39570ab84882bbcbfc0e8bf30c7337a642 /src/Language/SimpleShell/Parser/Root.hs | |
parent | 689732c084b9bc017b9015b8b151088fe057464c (diff) |
Add Module parser skeleton
Diffstat (limited to 'src/Language/SimpleShell/Parser/Root.hs')
-rw-r--r-- | src/Language/SimpleShell/Parser/Root.hs | 12 |
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 |