simponic.xyz/godel/index.html

47 lines
1.4 KiB
HTML
Raw Normal View History

2023-11-16 21:06:35 -05:00
<!doctype html>
2023-11-16 16:56:56 -05:00
<html>
2023-11-16 21:06:35 -05:00
<head>
<title>Liz's L-Program Compiler</title>
<link rel="stylesheet" type="text/css" href="codemirror/codemirror.css" />
<link rel="stylesheet" type="text/css" href="css/styles.css" />
</head>
<body>
<div class="container">
<h1>Liz's L-Program Compiler</h1>
<p><i>Developed for Kulyukin's CS5000</i></p>
<hr />
<div class="source-container">
<div class="textarea-container">
<h3>L Source</h3>
<textarea id="instructions">
// asdf
[ B1 ] X1 <- X1 + 1
IF X1 != 0 GOTO B1
X1 <- X1
</textarea
>
<div>
<button id="compile">Compile</button
><span style="margin-left: 0.5rem" id="compile_status"></span>
</div>
</div>
<div class="textarea-container">
<h3>Compiled JS</h3>
<textarea id="compiled"></textarea>
<div>
<button id="eval">Eval</button
><span style="margin-left: 0.5rem" id="eval_status"></span>
</div>
</div>
2023-11-16 16:56:56 -05:00
</div>
</div>
2023-11-16 21:06:35 -05:00
<script src="codemirror/codemirror.js"></script>
<script src="js-beautify/js-beautify.js"></script>
<script src="js/observable.js"></script>
<script src="js/parser.js"></script>
<script src="js/compiler.js"></script>
<script src="js/main.js"></script>
</body>
2023-11-16 16:56:56 -05:00
</html>