advent-of-code-2023/wasm/index.html

12 lines
268 B
HTML
Raw Normal View History

2023-12-10 21:56:15 -07:00
<!DOCTYPE HTML>
<html>
<head>
<script>
WebAssembly.instantiateStreaming(fetch("simple.wasm")).then(
(results) => {
console.log(results);
},
);
</script>
</head>
</html>