I have the impression that this is mainly a point-and-click GUI for an implementation of a quarter of Common Lisp.<p>To translate their calculator tutorial (<a href="http://www.jetbrains.com/mps/docs/tutorial.html" rel="nofollow">http://www.jetbrains.com/mps/docs/tutorial.html</a>), in Common Lisp you would write a little macro "define-calculator" that then lets you write something like this:<p><pre><code> (define-calculator java-and-php-hours
(input java-hours :label "Java hours")
(input php-hours :label "PHP hours")
(output (+ (* java-hours 10)
(* php-hours 5))
:label "Total"))
</code></pre>
It would be based on some library (e.g. common-qt) that provides GUI primitives.
<i>This naturally leads to the idea of non-textual presentation of program code. A major benefit of this approach is that it eliminates the need for code parsing. Our solution is to have code always maintained in an Abstract Syntax Tree (AST), which consists of nodes with properties, children and references, and fully describes the program code.</i><p>So.. Common Lisp? I just read the article about the stupidity in file systems. In it the author laments the old adage about history repeating itself. He coins the anecdote, <i>there are no new engineering problems, just new engineers solving old problems.</i><p>I can imagine this MPS product being incredibly useful... but we have had this technology for nearly 40 years in some for another of Lisp. And most Lispers would agree that extending the program language and semantics to the domain is a very productive way of writing reliable and maintainable software.<p>I am curious though what makes MPS superior exactly? Seems more complicated than Lisp, but I'm no MPS expert. Can anyone enlighten us?
In short it's an IDE to create new languages, and those languages will have IDEs, cool stuff I would say.<p>I remember in 2006-2007 I've tried MPS, back then it looked too complicated, I hope that now guys from JetBrains have improved the documentation.
There's also Intentional software (<a href="http://intentionalsoftware.com/" rel="nofollow">http://intentionalsoftware.com/</a>) who offer a similar product. It was hyped quite heavily a few years ago, but I've not heard much about Intentional Software's product or MPS.<p>Is anyone seriously using a language workbench tool? If so, what are you experiences with it?
Just for the record, they already use it to build the Youtrack bugracker:<p><a href="http://www.jetbrains.com/youtrack/" rel="nofollow">http://www.jetbrains.com/youtrack/</a>