24 lines
311 B
HTML
24 lines
311 B
HTML
|
<!DOCTYPE html>
|
||
|
<html>
|
||
|
<head>
|
||
|
</head>
|
||
|
|
||
|
<script>
|
||
|
const importObject = {
|
||
|
console: {
|
||
|
log(arg) {
|
||
|
console.log(arg);
|
||
|
}
|
||
|
}
|
||
|
};
|
||
|
|
||
|
WebAssembly.instantiateStreaming(fetch("/test.wasm"), importObject)
|
||
|
.then(obj => {
|
||
|
obj.instance.exports.main();
|
||
|
});
|
||
|
</script>
|
||
|
|
||
|
<body>
|
||
|
</body>
|
||
|
</html>
|