C/C++
tello.lst
Associated article: Artificial Intelligence
Tags: C/C++ Tools Open Source
_Actor Does More Than Windows_
by Ernest R. Tello
Example 1: Eratosthenes' Sieve benchmark
inherit(Object, #Sieve, nil, nil,nil);!!
now(Sieve);!!
/* Returns the number of prime numbers between 0 and cnt,
inclusive. */
Def sieve(self, cnt | flags, count, c)
{ c := cnt + 1;
...


