-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmain.html
35 lines (35 loc) · 1.36 KB
/
main.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
<!DOCTYPE html>
<html>
<head>
<title>WHILE Interpreter</title>
<link rel="stylesheet" href="main.css"/>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.4.1/jquery.min.js"></script>
</head>
<body>
<div id="title"><h1>WHILE Interpreter</h1>
</div>
<div id="splitLeftText" class="notVisible">
<textarea id="text" wrap="off">test</textarea>
<div class="btn-group">
<button id="commit" type="button">commit</button>
</div>
</div>
<div id="splitLeftMain" class="visible">
<ul id="main"></ul>
<div class="btn-group">
<button id="jump back" type="button" pressed="false"><<</button>
<button id="back" type="button"><</button>
<button id="stop" type="button">||</button>
<button id="step" type="button">></button>
<button id="jump" type="button" pressed="false">>></button>
<button id="edit" type="button">edit</button>
</div>
</div>
<div id="splitRight">
<ul id="memory"></ul>
<div id="comment"><h3>Click on a line to set a breakpoint.</h3><h3>Click again to reset it.</h3></div>
</div>
</div>
<script src='./final.js'></script>
</body>
</html>