aboutsummaryrefslogtreecommitdiff
path: root/src/talks/wasm/examples/3-primes/index.html.raw
blob: 235a639bf7a6acbb8874166df65c04fc12c25188 (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</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