Re: How to die

2007-05-30 Thread Gaal Yahas
On 5/30/07, Chas Owens <[EMAIL PROTECTED]> wrote: I have poked around a bit in the code and can't find a good way to die. I am currently using perlReplicate n a = if n == 1/0 then error "Infinite replications would exhaust memory" else if n < 0 then genericReplicate 0 a

How to die

2007-05-29 Thread Chas Owens
I have poked around a bit in the code and can't find a good way to die. I am currently using perlReplicate n a = if n == 1/0 then error "Infinite replications would exhaust memory" else if n < 0 then genericReplicate 0 a else genericReplicate (truncate n) a But that gives th