aboutsummaryrefslogtreecommitdiff
path: root/src/talks/wasm/examples/4-primes-sieve/index.html.raw
blob: 48e84e0ad0c2c45728dc1ee798fcef7609c67ddb (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
<!doctype html>
<html lang="en-US">
<head>
	<meta charset="utf-8" />
	<meta name="viewport" content="width=device-width" />
	<title>Count prime numbers (sieve)</title>
	<script src="./script.js" type="module" defer></script>
</head>

<body>
	<input id="input" />
	<button id="wasmButton">Count with WASM</button>
	<button id="jsButton">Count with JS</button>
	<br />
	<p id="resultText"></p>
</body>

</html>

Generated with cgit - Back to sebastiano.tronto.net