diff options
Diffstat (limited to 'index.html')
| -rw-r--r-- | index.html | 7 |
1 files changed, 4 insertions, 3 deletions
@@ -7,11 +7,12 @@ <body> <h1>automathon</h1> + <div id='editor'> <div id='code'> <button id='compile'>compile</button> <br> - <textarea id='src'> + <pre id='src' contenteditable='plaintext-only'> : fac dup 1 > if @@ -19,8 +20,9 @@ then ; 5 fac -drop</textarea> +drop</pre> </div> + <div id='state-container'> <div id='state'> <div class='controls'> @@ -44,7 +46,6 @@ drop</textarea> </div> </div> <br> - <canvas id='arena' width='512' height='512'>no canvas!</canvas> <script src='./main.mjs' type='module'></script> </body> </html> |
