HaskellWiki

Haskell | Wiki community | Recent changes
Random page | Special pages

 

Not logged in
Log in | Help

HaskellWiki:Style test

Contents

1 H2

1.1 H3

1.1.1 H4

1.1.1.1 H5
1.1.1.1.1 H6

2 GeSHi Tests

2.1 C

for (int a=0;a<3;a++)
  printf ("%d\n",a);

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.

Inline:
pre
.

Retrieved from "http://www.haskell.org/haskellwiki/HaskellWiki:Style_test"

This page has been accessed 732 times. This page was last modified 08:35, 22 November 2006. Recent content is available under a simple permissive license.