server
Some checks failed
Build / build (push) Failing after 6m4s
Test / build (push) Failing after 6m33s

This commit is contained in:
Chuck Smith
2024-04-02 12:21:41 -04:00
parent 862119e90e
commit 4c9ec5aaaa
77 changed files with 1181 additions and 244 deletions

View File

@@ -0,0 +1,28 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
<title>Monkey Playground</title>
<link href="style.css" rel="stylesheet"/>
</head>
<body>
<div class="layout">
<div class="top">
<b><a href="https://git.unflavoredmeson.com/unflavoredmeson/monkey-lango"
style="color: #FFF; text-decoration: none;">Monkey</a></b>
<span>⌘/Ctrl + ENTER to Run. ⌘/Ctrl + SPACE to Format.</span>
</div>
<div class="bottom">
<div class="left">
<pre id="code"></pre>
</div>
<div id="output" class="right"></div>
</div>
</div>
<script src="ace/ace.js" type="text/javascript" charset="utf-8"></script>
<script src="https://code.jquery.com/jquery-1.12.4.min.js"
integrity="sha256-ZosEbRLbNQzLpnKIkEdrPv7lOy9C27hHQ+Xp8a4MxAQ=" crossorigin="anonymous"></script>
<script src="main.js"></script>
</body>
</html>