@viebel is there a tutorial somewhere about how to extend Klipse for a new language? I like to tinker with new languages, and I'm tossing around the idea of writing a toy language starting mostly with a set of blogposts
I see how Klipse adds support for languages (in the lang) folder, but can I use Klipse from a CLJS program as a library or something?
Hi @tbaldridge
Could you elaborate on what you want to achieve exactly?
The natural way would be to create a standalone javasascript file that exposes an “eval” function of your language
Will your language do eval only or will it also create graphical elements like Oblivion http://blog.klipse.tech/data/2017/03/22/oblivion.html
@viebel it's more like, I have a JS function "E" which I can use to eval a string representation of my language "Foo". How do I hook this into Klipse? Does it require me downloading and deploying Klipse on my own?
And no, the output of my "E" function is data, but I can make it a text string as well