This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/** | |
* Haskell Brushe for SyntaxHighlighter 3.0 | |
*/ | |
SyntaxHighlighter.brushes.Haskell = function() | |
{ | |
var constants = 'True False Nothing Just Left Right LT EQ GT'; | |
var datatypes = 'Bool Maybe Either Ordering Char String Int Integer Float Double Rational ' + | |
'IO ReadS ShowS FilePath IOError Monad Functor Show Read' + | |
'Eq Ord Enum Bounded Num Real Integral Fractional Floating RealFrac RealFloat'; |