aboutsummaryrefslogtreecommitdiff
path: root/src/Language/SimpleShell/AST/Name.hs
blob: 69162db8dfcb93ad867bbf374903d93af6bd176b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
module Language.SimpleShell.AST.Name
  ( VarName
  , FunName
  , ProcedureName
  )
where


import Data.Text (Text)


type VarName = Text

type FunName = Text

type ProcedureName = Text