60 lines
1.7 KiB
HTML
60 lines
1.7 KiB
HTML
---
|
|
layout: default
|
|
title: Playground
|
|
permalink: playground
|
|
---
|
|
|
|
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/codemirror/5.45.0/codemirror.min.css">
|
|
|
|
<h1>Playground</h1>
|
|
|
|
<div id="playground-container" style="visibility: hidden;">
|
|
|
|
<h4>Code</h4>
|
|
<select id="language-select">
|
|
<option value="bash">Bash</option>
|
|
<option value="c">C</option>
|
|
<option value="cpp">C++</option>
|
|
<option value="go">Go</option>
|
|
<option value="html">HTML</option>
|
|
<option value="javascript" selected="selected">JavaScript</option>
|
|
<option value="python">Python</option>
|
|
<option value="ruby">Ruby</option>
|
|
<option value="rust">Rust</option>
|
|
</select>
|
|
|
|
<input id="logging-checkbox" type="checkbox"></input>
|
|
<label for="logging-checkbox">Log</label>
|
|
|
|
<textarea id="code-input">
|
|
function quicksort() {
|
|
function sort(items) {
|
|
if (items.length <= 1) return items;
|
|
var pivot = items.shift(), current, left = [], right = [];
|
|
while (items.length > 0) {
|
|
current = items.shift();
|
|
current < pivot ? left.push(current) : right.push(current);
|
|
}
|
|
return sort(left).concat(pivot).concat(sort(right));
|
|
};
|
|
return sort(Array.apply(this, arguments));
|
|
};
|
|
</textarea>
|
|
|
|
<h4>Tree</h4>
|
|
<span id="update-time"></span>
|
|
<pre id="output-container" class="highlight"></pre>
|
|
|
|
</div>
|
|
|
|
<script src="https://cdnjs.cloudflare.com/ajax/libs/codemirror/5.45.0/codemirror.min.js"></script>
|
|
|
|
{% if jekyll.environment == "development" %}
|
|
<script>LANGUAGE_BASE_URL = "/assets/js";</script>
|
|
<script src="/assets/js/tree-sitter.js"></script>
|
|
{% else %}
|
|
<script>LANGUAGE_BASE_URL = "https://tree-sitter.github.io";</script>
|
|
<script src="https://tree-sitter.github.io/tree-sitter.js"></script>
|
|
{% endif %}
|
|
|
|
<script src="/assets/js/playground.js"></script>
|