id	summary	reporter	owner	description	type	status	priority	milestone	version	resolution	keywords	cc
27	mkUpdater sleeps for constant behaviours	povman		"I wrote a little sample program:

{{{
main = do
    c <- makeClock
    a <- mkUpdater (cGetTime c) (fmap (const (print ""ping"")) time)
    a
}}}

which, to my dismay, exited without printing ""ping""! I have therefore added a new behaviour and a rewrite rule which allows me to implement my test thusly:

{{{
main = do
    c <- makeClock
    a <- mkUpdater (cGetTime c) (bConst (print ""blah""))
    a
}}}
"	defect	new	minor					
