-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
23 lines (23 loc) · 832 Bytes
/
index.html
File metadata and controls
23 lines (23 loc) · 832 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
<html>
<head>
<title>ChickenBF</title>
<link rel="stylesheet" type="text/css" href="index.css">
<script src="libs/ChickenFW/js/mix.js"></script>
<script src="libs/ChickenFW/js/namespace.js"></script>
<script src="libs/ChickenFW/js/class.js"></script>
<script src="libs/ChickenFW/js/inject.js"></script>
<script src="libs/ChickenFW/js/worker.js"></script>
<script src="src/bfvm.js"></script>
<script src="src/bfio.js"></script>
<script src="src/refvm.js"></script>
<script src="src/optvm.js"></script>
<script src="src/main.js"></script>
</head>
<body>
<div id="progInputContainer">
<textarea id="progInput" placeholder="Stick your program here..."></textarea>
<button id="execute">Execute</button> <span id="timerOutput"/>00:00:00.000</span>
</div>
<div id="progOutput"></div>
</body>
</html>