diff options
author | Elizabeth Hunt <elizabeth.hunt@simponic.xyz> | 2023-11-16 14:56:56 -0700 |
---|---|---|
committer | Elizabeth Hunt <elizabeth.hunt@simponic.xyz> | 2023-11-16 14:56:56 -0700 |
commit | ec2b924fdac0b609c2bda4e857113674965732af (patch) | |
tree | 1997edfae1227bbee0654a6ca05c2c2585e89c20 /godel/index.html | |
parent | 30f9f2bc185b88669030f7b1a433d79c39c9f1bf (diff) | |
download | simponic.xyz-ec2b924fdac0b609c2bda4e857113674965732af.tar.gz simponic.xyz-ec2b924fdac0b609c2bda4e857113674965732af.zip |
godel init foo
Diffstat (limited to 'godel/index.html')
-rw-r--r-- | godel/index.html | 35 |
1 files changed, 35 insertions, 0 deletions
diff --git a/godel/index.html b/godel/index.html new file mode 100644 index 0000000..84cde8f --- /dev/null +++ b/godel/index.html @@ -0,0 +1,35 @@ +<!DOCTYPE html> +<html> +<head> + <title>L-Program Compiler</title> + <link rel="stylesheet" type="text/css" href="css/styles.css"> + <link rel="stylesheet" type="text/css" href= + "codemirror/codemirror.css"> +</head> +<body> + <div class="container"> + <h1>L-Program Compiler</h1> + <p><i>Developed for Kulyukin's CS5000</i></p> + <hr> + <div class="textarea-container"> + <textarea id="instructions">// asdf +q0 B 1 q1 +q1 1 R q1 +q1 B 1 q2 +q2 1 R q2 +q2 B 1 f</textarea> + <div> + <button id="compile">Compile</button><span style= + "margin-left: 0.5rem" id="compile_status"></span> + </div> + <div> + <button id="copy_state">Copy State</button> + </div> + </div> + </div> + <script src="codemirror/codemirror.js"></script> + <script src="js/observable.js"></script> + <script src="js/parser.js"></script> + <script src="js/main.js"></script> +</body> +</html> |