Am I correct in assuming this program should run 100 secs?<br><br>&gt;import Control.Concurrent<br>&gt;main = do<br>&gt;&nbsp;&nbsp;&nbsp;&nbsp; threadDelay 100000<br>&nbsp;&nbsp; <br>Why do I get the folling result then?<br>&nbsp;ghc -threaded Main.hs -o delay<br>
time ./delay<br><br>real&nbsp;&nbsp;&nbsp; 0m0.104s<br>user&nbsp;&nbsp;&nbsp; 0m0.001s<br>sys&nbsp;&nbsp;&nbsp; 0m0.002s<br><br>Thanks in advance for all your wonderful comments,<br>Immanuel<br>