advent-of-code-2023/wasm/index.html
2023-12-10 21:56:15 -07:00

12 lines
No EOL
268 B
HTML

<!DOCTYPE HTML>
<html>
<head>
<script>
WebAssembly.instantiateStreaming(fetch("simple.wasm")).then(
(results) => {
console.log(results);
},
);
</script>
</head>
</html>