mirror of
https://github.com/i-net-software/JWebAssembly.git
synced 2025-03-15 02:44:47 +01:00
13 lines
408 B
HTML
13 lines
408 B
HTML
|
<!DOCTYPE html>
|
||
|
<html>
|
||
|
<head>
|
||
|
<script src="HelloWorld.wasm.js"></script>
|
||
|
</head>
|
||
|
<body>
|
||
|
<script>
|
||
|
WebAssembly.instantiateStreaming(fetch('HelloWorld.wasm'), wasmImports)
|
||
|
.then(obj => obj.instance.exports.main())
|
||
|
.catch((err) => document.write(err + '<p>Missing <a href="https://github.com/i-net-software/JWebAssembly/wiki/browser">Browser Support</a>') );
|
||
|
</script>
|
||
|
</body>
|
||
|
</html>
|