class Rouge::Lexers::Clean

Public Class Methods

keywords() click to toggle source
# File lib/rouge/lexers/clean.rb, line 12
def self.keywords
  @keywords ||= Set.new %w(
    if otherwise
    let in
    with where
    case of
    infix infixl infixr
    class instance
    generic derive
    special
    implementation definition system module
    from import qualified as
    dynamic
    code inline foreign export ccall stdcall
  )
end