Very nice. I really like how it pretty prints python objects. I wish it was a bit more "repl"-y, but the quick auto-evaluation helps make up for that.<p>I currently use <a href="https://repl.it/" rel="nofollow">https://repl.it/</a> for an in browser interpreter/repl.
Currently supports Python, Ruby and Brainfuck. Guide to adding new interpreter:<p><a href="https://github.com/fatiherikli/fil#adding-new-interpreter" rel="nofollow">https://github.com/fatiherikli/fil#adding-new-interpreter</a>
The BrainFuck interpreter doesn't seem to work properly. For example, I tried<p><pre><code> ++++++++++[->+++++++<].
</code></pre>
Which multiplies 10x7 and should print "F" (ascii 70). Nothing appears to print.<p>I have a K interpreter[1] that could be adapted fairly easy to a system like this. Other good candidates include JSForth[2] and NGN APL[3].<p>[1] <a href="https://github.com/JohnEarnest/ok" rel="nofollow">https://github.com/JohnEarnest/ok</a><p>[2] <a href="http://home.diphi.com/users/jeffr/forth/jsforth.html" rel="nofollow">http://home.diphi.com/users/jeffr/forth/jsforth.html</a><p>[3] <a href="https://github.com/ngn/apl" rel="nofollow">https://github.com/ngn/apl</a>