-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
43 lines (40 loc) · 1.71 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
<!DOCTYPE html>
<html lang="en">
<head>
<title>Dotcomma</title>
<meta name="author" content="Ryan Tosh (Redwolf Programs)">
<meta name="description" content="Dotcomma interpreter frontend that looks terrible but mostly works">
<meta name="keywords" content="Dotcomma,Esolang,Interpreter,Dotcomma Interpreter,RedwolfPrograms,Redwolf Programs,Ryan Tosh">
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta charset="utf-8">
<link rel="stylesheet" href="style/fonts.css"/>
<link rel="stylesheet" href="style/main.css"/>
<script src="js/main.js"></script>
</head>
<body>
<b>Code:</b>
<select id="version">
<option selected>Normal</option>
<option>Old</option>
</select>
<textarea id="code" rows="5" cols="67"></textarea>
<i id="brackets" class="error">Unbalanced brackets</i>
<b>Input:</b>
<i>(Interpreted as Javascript: <code>94</code>, <code>"Hello"</code>, <code>[3, 4, 6]</code>, or <code>["a", "b", "c"]</code> are the recommended formats)</i>
<textarea id="input" rows="5" cols="67"></textarea>
<i id="invalid" class="error">Invalid input</i>
<button id="run">Run</button>
<hr/>
<b>Output:</b>
<select id="type">
<option selected>Default</option>
<option>Numbers</option>
<option>Text</option>
<option>Binary (xxd)</option>
</select>
<textarea id="output" rows="5" cols="67" readonly></textarea>
<hr/>
<b>CGCC:</b>
<textarea id="cgcc" rows="5" cols="67" readonly></textarea>
</body>
</html>