HaskellWiki:Style test
H2[edit]
H3[edit]
H4[edit]
H5[edit]
H6[edit]
GeSHi Tests[edit]
C[edit]
<pre-c> for (int a=0;a<3;a++)
printf ("%d\n",a);
</pre-c>
Haskell[edit]
Code block using <haskell />
tag
{-
My program
-}
import Prelude
foo :: (Monad m) => m (Int,Int)
foo = return (x-2,x - 1) where
x = 3
-- The main function
main :: IO ()
main = do
a <- foo
putStr ("And the answer is: " ++(show (fst a))++"\n")
Inline using <hask />
tag import Prelude
Inline using <code />
tag import Prelude
Using <pre />
tag for haskell code block will disable syntax highlight
import Prelude main :: IO () main = print "Hello world"