in reply to Re: Should loop {} really loop indefinitely?
in thread Should loop {} really loop indefinitely?
In Perl 6, when you want to idle indefinitely, you should probably write:
sleep(Inf);Also, as mentioned above, replacing loop {} by a nop would be just as false as letting it loop forever. 0 * Inf is neither 0 nor Inf.
|
|---|