Spaces:
Running
Running
File size: 684 Bytes
8f3f8db |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 |
<!DOCTYPE html>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
<!-- For browser that do support ES6 modules for WebWorkers -->
<!--
<script type="module">
new Worker("../squeak_headless.js?imageName=../headless/headless.image", { type: "module" });
</script>
-->
<!-- For browsers without support for ES6 modules for WebWorkers use bundled JS file -->
<script>
console.log("Starting SqueakJS in a WebWorker...");
new Worker("../dist/squeak_headless_bundle.js?imageName=../headless/headless.image");
</script>
</head>
<body>
Please open the developer console to see the console messages produced by the Smalltalk image.
</body>
</html>
|