Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
<html>

<head>
	<meta charset="UTF-8" />
	<link rel="stylesheet" href="style.css">
</head>
<script type="module">
	import init, * as mod from './wasm/bindgen.js'
	window._sweet_wasm = mod;
	init()
		.catch((error) => {
			if (!error.message.startsWith("Using exceptions for control flow,"))
				throw error
		});
</script>

</html>