aboutsummaryrefslogtreecommitdiff
path: root/03_threads/program.mjs
blob: db0a2c68f834bc6e3e9d1934086acbeb302546a7 (plain)
1
2
3
4
5
6
import Primes from "./build/primes.mjs"

var primes = await Primes();

const count = primes._primes_in_range(1, 100);
console.log("There are " + count + " primes between 1 and 100");

Generated with cgit - Back to sebastiano.tronto.net