Files
rust-as/www/test.html
2023-04-28 20:41:36 +02:00

13 lines
272 B
HTML

<!DOCTYPE html>
<html>
<body>
<script type="module">
import init from "../pkg/rust_as.js";
let wasm = await init("../pkg/rust_as_bg.wasm");
console.log(wasm);
wasm.greet();
</script>
</body>
</html>