blob: 16b132f8cc635e869ffe035c8c17ed673e5a7665 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
|
<!DOCTYPE html>
<html>
<head>
<title>automathon</title>
<link rel='stylesheet' href='main.css'>
</head>
<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>
</html>
|