HaskellWiki:Style test
Contents |
[edit]
1 H2
[edit]
1.1 H3
[edit]
1.1.1 H4
[edit]
1.1.1.1 H5
[edit]
1.1.1.1.1 H6
[edit]
2 GeSHi Tests
[edit]
2.1 C
for (int a=0;a<3;a++) printf ("%d\n",a);
[edit]
2.2 Haskell
{- My program -} import Prelude foo :: (Monad m) -> m (Int,Int) foo = (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: import Prelude.
pre.
