Files
double-pendulum/index.html
T
flip 26a9a9b8d0
gitea/double-pendulum/pipeline/head This commit looks good
feat: index.html toegevoegd die gebouwde wasm kan gebruiken
2026-09-05 17:49:34 +02:00

17 lines
287 B
HTML

<html>
<head>
<meta content="text/html;charset=utf-8" http-equiv="Content-Type"/>
</head>
<body>
<script type="module">
import init from './double-pendulum.js';
async function run() {
await init();
}
run();
</script>
</body>
</html>