Difference between revisions of "HaskellWiki:Style test"

From HaskellWiki
Jump to navigation Jump to search
 
(3 intermediate revisions by the same user not shown)
Line 1: Line 1:
  +
== H2 ==
  +
  +
=== H3 ===
  +
  +
==== H4 ====
  +
  +
===== H5 =====
  +
  +
====== H6 ======
  +
 
== GeSHi Tests ==
 
== GeSHi Tests ==
   
Line 17: Line 27:
 
import Prelude
 
import Prelude
   
foo :: (Monad m) -> m (Int,Int)
+
foo :: (Monad m) => m (Int,Int)
foo = (x-2,x - 1) where
+
foo = return (x-2,x - 1) where
 
x = 3
 
x = 3
   

Revision as of 10:30, 26 August 2008

H2

H3

H4

H5
H6

GeSHi Tests

C

<pre-c> for (int a=0;a<3;a++)

 printf ("%d\n",a);

</pre-c>

Haskell

{-
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: import Prelude.

Inline:
pre
.