Difference between revisions of "User:Ashley Y"

From HaskellWiki
Jump to navigation Jump to search
Line 4: Line 4:
   
 
<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>
  +
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))
  +
</haskell>

Revision as of 08:45, 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)

<c>for (int a=0;a<3;a++) printf ("%d",a);</c>

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))