From 73efecca42dbc44200e797e02f8c1e24fcff26ef Mon Sep 17 00:00:00 2001 From: Sebastiano Tronto Date: Thu, 5 Jun 2025 10:13:28 +0200 Subject: Added two more examples --- 03_threads/index.html | 2 +- 03_threads/program.mjs | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) (limited to '03_threads') diff --git a/03_threads/index.html b/03_threads/index.html index 29cfaf8..7a1fba7 100644 --- a/03_threads/index.html +++ b/03_threads/index.html @@ -3,7 +3,7 @@ - Multiply two numbers + Primes in a range diff --git a/03_threads/program.mjs b/03_threads/program.mjs index a5a89ce..db0a2c6 100644 --- a/03_threads/program.mjs +++ b/03_threads/program.mjs @@ -3,4 +3,4 @@ import Primes from "./build/primes.mjs" var primes = await Primes(); const count = primes._primes_in_range(1, 100); -console.log("There are " + count + " primes betwees 1 and 100"); +console.log("There are " + count + " primes between 1 and 100"); -- cgit v1.3