28 lines
968 B
HTML
28 lines
968 B
HTML
<!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://gitea.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> |