mirror of
https://bjh21.me.uk/bedstead/.git
synced 2026-07-19 18:13:24 -04:00
28 lines
867 B
HTML
28 lines
867 B
HTML
<html xmlns="http://www.w3.org/1999/xhtml" lang="en-GB" xml:lang="en-GB">
|
|
<head>
|
|
<!-- SPDX-License-Identifier: CC0-1.0 -->
|
|
<link rel="stylesheet" href="bedstead.css" type="text/css" />
|
|
<title>Bedstead editor test</title>
|
|
<script type="module"><![CDATA[
|
|
import Bedstead from './bedstead.js';
|
|
document.getElementById("run").onclick = function(){
|
|
Bedstead({
|
|
arguments: document.getElementById("input").value.split(" "),
|
|
print: function(text) {
|
|
document.getElementById("output").textContent = text;
|
|
}
|
|
});
|
|
};
|
|
]]>
|
|
</script>
|
|
</head>
|
|
<body>
|
|
<form>
|
|
<label for="input">Input</label>
|
|
<input type="text" id="input"/>
|
|
<input type="button" id="run" value="Run!"/>
|
|
</form>
|
|
<p><code id="output"></code></p>
|
|
</body>
|
|
</html>
|