summaryrefslogtreecommitdiffstats
path: root/index.html
diff options
context:
space:
mode:
authorBrian Cully <bjc@spork.org>2025-08-07 14:16:43 -0400
committerBrian Cully <bjc@spork.org>2025-08-19 11:48:43 -0400
commit2eecdb1a4bae0fbced05f4c375cd6126929fb1fb (patch)
treeb39ce956c5114cb2d1d14c6a7f09eb857e63d84c /index.html
downloadautomathon-2eecdb1a4bae0fbced05f4c375cd6126929fb1fb.tar.gz
automathon-2eecdb1a4bae0fbced05f4c375cd6126929fb1fb.zip
parser now emits list of words and hashmap of string→index
wordlist is just a vector of bytecode entries. to associate a word to an entry in the wordlist, use the word catalog to look up by name.
Diffstat (limited to 'index.html')
-rw-r--r--index.html13
1 files changed, 13 insertions, 0 deletions
diff --git a/index.html b/index.html
new file mode 100644
index 0000000..c985df4
--- /dev/null
+++ b/index.html
@@ -0,0 +1,13 @@
+<!DOCTYPE html>
+<html>
+ <head>
+ <title>automathon</title>
+ <link rel='stylesheet' href='main.css'>
+ </head>
+
+ <body>
+ <h1>automathon</h1>
+ <canvas id='arena' width='512' height='512'>no canvas!</canvas>
+ <script src='./main.mjs' type='module'></script>
+ </body>
+</html>