aboutsummaryrefslogtreecommitdiff
path: root/03_threads/program.mjs
blob: 3bdb4ea9edf55a69dec95e6ca11592796b12f887 (plain)
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