first commit

It doesn't really work as a game.
This commit is contained in:
Christian Lawson-Perfect 2025-02-09 20:09:57 +00:00
commit 1916afcb03
12 changed files with 7797 additions and 0 deletions

10
load-app.js Normal file
View file

@ -0,0 +1,10 @@
import show_error from './show-error.mjs';
async function init_app() {
const compilation_error = await show_error;
if(compilation_error) {
return;
}
const app = Elm.App.init({node: document.body, flags: {}});
}
init_app();