console.debug("Loading wasm…"); import init, * as wasm from "../../wasm/automata_web.js"; try{ console.debug("Wasm loaded. Starting app…"); await init(); console.debug("App started."); document.getElementById("center_text")!.innerHTML = ''; document.getElementById("app")!.style.display = ''; wasm.init(); }catch(e){ console.error("Failed to start: " + e); document.getElementById("app")!.remove(); document.getElementById("center_text")!.innerHTML = `

An error occurred during loading:

${e}

Make sure you use a modern browser with WebGL and WASM enabled.

`; throw e; } export default wasm