21 lines
310 B
HTML
21 lines
310 B
HTML
<!doctype html>
|
|
|
|
<html>
|
|
|
|
<head>
|
|
<meta charset="utf-8">
|
|
<title>Simple add example</title>
|
|
</head>
|
|
|
|
<body>
|
|
<script>
|
|
|
|
WebAssembly.instantiateStreaming(fetch('func.wasm'))
|
|
.then(obj => {
|
|
console.log(obj.instance.exports.add(1, 2)); // "3"
|
|
});
|
|
</script>
|
|
</body>
|
|
|
|
</html>
|