diff options
Diffstat (limited to 'index.html')
| -rw-r--r-- | index.html | 15 |
1 files changed, 15 insertions, 0 deletions
@@ -7,6 +7,21 @@ <body> <h1>automathon</h1> + <textarea> +: fac + dup + 1 > if + dup 1 - fac * + then + ; +5 fac + </textarea> + <button id='compile'>compile</button> + <button id='tick'>tick</button> + <button id='run'>run</button> + <div id='datastack'></div> + <div id='callstack'></div> + <div id='wordlist'></div> <canvas id='arena' width='512' height='512'>no canvas!</canvas> <script src='./main.mjs' type='module'></script> </body> |
