User:Ashley Y
From HaskellWiki
(Difference between revisions)
| Line 2: | Line 2: | ||
I hereby license all my contributions to this wiki under the simple permissive license on [[HaskellWiki:Copyrights]]. —[[User:Ashley Y|Ashley Y]] 05:25, 14 January 2006 (UTC) | I hereby license all my contributions to this wiki under the simple permissive license on [[HaskellWiki:Copyrights]]. —[[User:Ashley Y|Ashley Y]] 05:25, 14 January 2006 (UTC) | ||
| + | |||
| + | == GeSHi Tests == | ||
| + | |||
| + | === C === | ||
<c>for (int a=0;a<3;a++) printf ("%d",a);</c> | <c>for (int a=0;a<3;a++) printf ("%d",a);</c> | ||
| + | |||
| + | === Haskell === | ||
<haskell> | <haskell> | ||
Revision as of 20:29, 7 March 2006
Ashley Yakeley
I hereby license all my contributions to this wiki under the simple permissive license on HaskellWiki:Copyrights. —Ashley Y 05:25, 14 January 2006 (UTC)
1 GeSHi Tests
1.1 C
<c>for (int a=0;a<3;a++) printf ("%d",a);</c>
1.2 Haskell
foo :: (Monad m) -> m Int foo = x where x = 3 -- The main function main :: IO () main = do a <- foo putStrLn ("And the answer is: " ++(show foo))
