You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

16 lines
367 B
HTML

<!doctype html>
<html lang="en">
<body>
<canvas id="trees-canvas"></canvas>
<script type="module">
import init from './trees.js'
init().catch((error) => {
if (!error.message.startsWith("Using exceptions for control flow, don't mind me. This isn't actually an error!")) {
throw error;
}
});
</script>
</body>
</html>