17 lines
296 B
HTML
17 lines
296 B
HTML
<html>
|
|
<head>
|
|
<meta content="text/html;charset=utf-8" http-equiv="Content-Type"/>
|
|
</head>
|
|
<body>
|
|
<script type="module">
|
|
import init from './pkg/double_pendulum_wasm.js';
|
|
|
|
async function run() {
|
|
await init();
|
|
}
|
|
|
|
run();
|
|
</script>
|
|
</body>
|
|
</html>
|