about summary refs log tree commit diff
path: root/users/kranzes/wasm-hello-world/src/index.html
<html>
  <head>
    <meta content="text/html;charset=utf-8" http-equiv="Content-Type"/>
  </head>
  <body>
    <script type="module">
      import init, { hello_world } from './wasm_hello_world.js';

      async function run() {
        await init();

	hello_world();
      }

      run();
    </script>
  </body>
</html>