22 lines
367 B
HTML
22 lines
367 B
HTML
|
<!DOCTYPE html>
|
||
|
<html>
|
||
|
<head>
|
||
|
<meta content="text/html;charset=utf-8" http-equiv="Content-Type"/>
|
||
|
<title>Testing Ludus/WASM integration</title>
|
||
|
|
||
|
</head>
|
||
|
<body>
|
||
|
<script type="module">
|
||
|
import {run} from "./ludus.js";
|
||
|
|
||
|
window.ludus = run;
|
||
|
|
||
|
console.log(run(":foobar"));
|
||
|
</script>
|
||
|
<p>
|
||
|
Open the console. All the action's in there.
|
||
|
</p>
|
||
|
|
||
|
</body>
|
||
|
</html>
|