module Language.SimpleShell.AST.Name ( VarName , FunName ) where import Data.Text (Text) type VarName = Text type FunName = Text