-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
49 lines (49 loc) · 2.17 KB
/
index.html
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
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
<!DOCTYPE html>
<html>
<head>
<link rel="stylesheet" href="style.css" />
<title>Thuepaste</title>
<!--[if IE]>
<meta http-equiv="refresh" content="0;url=/ie-is-not-supported.html" />
<![endif]-->
</head>
<body spellcheck="false">
<main>
<h1>Thuepaste</h1>
<p><a href="/">site root</a> — <a href="https://github.com/dragoncoder047/thuepaste/blob/main/README.md">about this page</a></p>
<p>
Sample programs:
<select id="samples" name="samples">
<option selected>samples/hello.t</option>
<option>samples/99bottles.t</option>
<option>samples/sierpinski.t</option>
<option>samples/truthmachine.t</option>
<option>samples/incany.t</option>
<option>samples/nondeterministic.t</option>
<option>samples/notmarkov.t</option>
<option>samples/tounary.t</option>
<option>samples/todecimal.t</option>
<option>samples/turing/wolfram.t</option>
<option>samples/turing/bb1.t</option>
<option>samples/boolfuck.t</option>
<option>samples/collatz.t</option>
<option>samples/collatz2.t</option>
<option>samples/digitalroot.t</option>
</select>
</p>
<textarea id="code" spellcheck="false" autocorrect="false" rows="7"></textarea>
<p id="status">Sorry, you must have Javascript enabled to use Thuepaste.</p>
<p>
<button id="load">Load</button>
<button id="run">Run</button>
<button id="step">Step</button>
<button id="halts">Does it halt?</button>
<label for="hyper">Hyperspeed<input id="hyper" name="hyper" type="checkbox"></input></label>
</p>
<div id="thue"></div>
<script src="thue.js"></script>
<script src="doesithalt.js"></script>
<script src="main.js"></script>
</main>
</body>
</html>