HaskellWiki:Style test
From HaskellWiki
(Difference between revisions)
(→Haskell) |
|||
| (3 intermediate revisions 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) | + | foo :: (Monad m) => m (Int,Int) |
| - | foo = (x-2,x - 1) where | + | foo = return (x-2,x - 1) where |
x = 3 | x = 3 | ||
Current revision
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 = 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")
import Prelude
pre.
