Files
carbon-lang/examples/sieve.carbon
T
Lucile Rose Nihlen 31cc20f6e3 move Core//range into prelude (#7524)
As discussed in the 2026-06-14 toolchain open meeting, `Range`
is a better fit for the prelude than as a general library in
`Core`. This PR moves `Range` into the prelude, and updates
the build infrastructure and various tests to reflect that
change.
2026-07-16 21:36:45 +00:00

45 lines
936 B
Plaintext

// Part of the Carbon Language project, under the Apache License v2.0 with LLVM
// Exceptions. See /LICENSE for license information.
// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
import Core library "io";
// Compute and return the number of primes less than 1000.
class Sieve {
impl as Core.UnformedInit {}
fn Make() -> Sieve {
returned var s: Sieve;
for (n: i32 in Core.Range(1000)) {
s.is_prime[n] = true;
}
return var;
}
fn MarkMultiplesNotPrime(ref self, p: i32) {
var n: i32 = p * 2;
while (n < 1000) {
self.is_prime[n] = false;
n += p;
}
}
var is_prime: array(bool, 1000);
}
fn Run() -> i32 {
var s: Sieve = Sieve.Make();
var number_of_primes: i32 = 0;
for (n: i32 in Core.InclusiveRange(2, 999)) {
if (s.is_prime[n]) {
++number_of_primes;
Core.Print(n);
s.MarkMultiplesNotPrime(n);
}
}
return number_of_primes;
}