forked from angelopoerio/tapdigit
-
Notifications
You must be signed in to change notification settings - Fork 0
/
demo.htm
29 lines (23 loc) · 791 Bytes
/
demo.htm
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
<html>
<head>
<meta name="apple-mobile-web-app-capable" content="yes">
<meta name="apple-mobile-web-app-status-bar-style" content="black">
<meta name="viewport" content="width=device-width maximum-scale=1 initial-scale=1 user-scalable=no">
<title>TapDigit demos</title>
<style>
body {
background-color: #ddd;
font-family: 'Helvetica Neue', HelveticaNeue, sans-serif;
text-shadow: white 0px 1px 1px;
}
</style>
</head>
<body>
<p><b>TapDigit demos</b></p>
<p>Test <a href="lexer.htm">lexer</a> (lexical scanner).</p>
<p>Test <a href="parser.htm">parser</a> (syntax tree).</p>
<p>Test (simple) <a href="eval.htm">evaluator</a>.</p>
<p>Test <a href="editor.htm">editor</a> with color highlighting
(warning: does not work on mobile).</p>
</body>
</html>