Help for this page

Select Code to Download


  1. or download this
    ruleSubName :: RuleParser String
    ruleSubName = verbatimRule "subroutine name" $ do
        twigil  <- option "" (string "*")
        name <- ruleOperatorName <|> ruleQualifiedIdentifier
        return $ ('&':twigil) ++ name