module FreeC.Backend.Agda.Keywords where
agdaKeywords :: [String]
agdaKeywords
= [ "abstract"
, "constructor"
, "data"
, "do"
, "eta-equality"
, "field"
, "forall"
, "hiding"
, "import"
, "in"
, "inductive"
, "infix"
, "infixl"
, "infixr"
, "instance"
, "let"
, "macro"
, "module"
, "mutual"
, "no-eta-equality"
, "open"
, "overlap"
, "pattern"
, "postulate"
, "primitive"
, "private"
, "public"
, "quote"
, "quoteContext"
, "quoteGoal"
, "quoteTerm"
, "record"
, "renaming"
, "rewrite"
, "Set"
, "syntax"
, "tactic"
, "unquote"
, "unquoteDecl"
, "unquoteDef"
, "using"
, "variable"
, "where"
, "with"
]