<html>
<head>
<style><!--
.hmmessage P
{
margin:0px;
padding:0px
}
body.hmmessage
{
font-size: 12pt;
font-family:±¼¸²
}
--></style></head>
<body class='hmmessage'><div dir='ltr'>It could be stupid question because i'm very beginner of haskell.<BR> <BR>I found strange literals when i read haskell code.<BR>Does anybody explan what the mean of >>= below ocode ? And additionally, What is mean of >> itself?<BR> <BR>putStrLn' [] = putChar '\n'<BR>putStrLn' xs - putStr' xs <strong>>>=</strong> \ x -> putChar '\n'<BR> <BR>putStr' [] = return ()<BR>putStr' (x : xs) = putChar x <strong>>></strong> putStr' n<BR> <BR>(because of i18n problem, back slash literal could be shown as '\')<BR> <BR>Thank you in advance<BR>Myung Shin Kim<BR> <BR>                                           </div></body>
</html>