-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
70 lines (67 loc) · 2.29 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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
<!doctype html>
<html>
<head>
<title>RatVM Game List</title>
<meta charset='utf-8'>
<link rel="shortcut icon" href="./favicon.png">
<style>
body {
background: white;
color: black;
font-size: 1.25em;
max-width: 600px;
margin-left: auto;
margin-right: auto;
}
h1 {
border-bottom: 1px dotted grey;
}
.listhead {
font-weight: bold;
margin-top: 0.5em;
list-style-type: none;
}
table {
border: none;
margin-left: auto;
margin-right: auto;
}
td {
border: none;
vertical-align: top;
}
</style>
</head>
<body>
<h1>RatVM</h1>
<p>Welcome to the RatVM programs list! Select the program of interest from the list below:
<table><tr><td>
<ul>
<li class='listhead'>Games
<li><a href='play.html'>Demo Game</a>
<li class='listhead'>Utilities
<li><a href='filemanager.html'>Virtual File Manager</a>
<li class='listhead'>Examples
<li><a href='play.html?game=user_tests'>User Tests</a>
<li><a href='play.html?game=fizzbuzz'>FizzBuzz Demo</a>
<li><a href='play.html?game=fibonacci'>Fibonacci Benchmark</a> (warning: very slow)
</ul></td><td><ul>
<li class='listhead'>Automated Tests
<li><a href='play.html?game=test_all' >All Tests</a>
<li><a href='play.html?game=test_comparisons'>Comparisons Test</a>
<li><a href='play.html?game=test_dynamic' >Dynamic Objects Test</a>
<li><a href='play.html?game=test_fileio' >File IO Test</a>
<li><a href='play.html?game=test_explode' >String Tokenize Test</a>
<li><a href='play.html?game=test_jumps' >Jumps and Function Calls Test</a>
<li><a href='play.html?game=test_lists' >Lists Test</a>
<li><a href='play.html?game=test_maps' >Maps Test</a>
<li><a href='play.html?game=test_math' >Math Test</a>
<li><a href='play.html?game=test_objects' >Objects Test</a>
<li><a href='play.html?game=test_objtree' >Objects Tree Test</a>
<li><a href='play.html?game=test_stack' >Stack Manipulation Test</a>
<li><a href='play.html?game=test_strings' >Strings Test</a>
<li><a href='play.html?game=test_values' >Values Test</a>
<li><a href='play.html?game=test_vocab' >Vocab Test</a>
</ul></td></tr></table>
</body>
</html>