Re: detecting primes - bugfix
Re: detecting primes - bugfix
- Subject: Re: detecting primes - bugfix
- From: Paul Berkowitz <email@hidden>
- Date: Fri, 23 Feb 2001 20:20:59 -0800
On 2/23/01 4:47 PM, "garbanzito" <email@hidden> wrote:
>
if a_possible_prime != next_divisor then
>
>
(used the Frontier version of not equals to avoid list munge.)
AppleScript has its own ascii-7 version of 'not equals' that not only avoids
list munge, but compiles to the 'regular" version when compiled in a script
editor:
if a_possible_prime /= next_divisor then
--
Paul Berkowitz