diff options
Diffstat (limited to 'src/Language/SimpleShell/AST/Function.hs')
-rw-r--r-- | src/Language/SimpleShell/AST/Function.hs | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/src/Language/SimpleShell/AST/Function.hs b/src/Language/SimpleShell/AST/Function.hs new file mode 100644 index 0000000..7594c0d --- /dev/null +++ b/src/Language/SimpleShell/AST/Function.hs @@ -0,0 +1,12 @@ +module Language.SimpleShell.AST.Function + ( Function(..) + ) +where + + +import Language.SimpleShell.AST.Expr (Expr) +import Language.SimpleShell.AST.Name (VarName) + + +data Function = Function [VarName] Expr + deriving (Show) |