1 2 3 4 5 6 7 8
import Primes from "./build/primes.mjs" var primes = await Primes(); var low = 1; var high = 10000000; const count = primes._primes_in_range(low, high); console.log("There are " + count + " primes between " + low + " and " + high);
Generated with cgit - Back to sebastiano.tronto.net