Difference between revisions of "HaskellWiki:Style test"

From HaskellWiki
Jump to navigation Jump to search
 
(One intermediate revision by the same user not shown)
Line 19: Line 19:
   
 
=== Haskell ===
 
=== Haskell ===
  +
Code block using <code>&lt;haskell /&gt;</code> tag
   
 
<haskell>
 
<haskell>
Line 38: Line 39:
 
</haskell>
 
</haskell>
   
Inline: <hask>import Prelude</hask>.
 
   
Inline: <pre>pre</pre>.
+
<!-- Inline: <pre>pre</pre> is not working . -->
  +
 
Inline using <code>&lt;hask /&gt;</code> tag <hask>import Prelude</hask>
  +
  +
Inline using <code>&lt;code /&gt;</code> tag <code>import Prelude</code>
  +
  +
Using <code>&lt;pre /&gt;</code> tag for haskell code block will disable syntax highlight
  +
  +
<pre>
  +
import Prelude
  +
  +
main :: IO ()
  +
main = print "Hello world"
  +
</pre>

Latest revision as of 07:06, 18 December 2016

H2

H3

H4

H5
H6

GeSHi Tests

C

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

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

</pre-c>

Haskell

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"