Arc is built on top of Racket. Since both of them are in the Lisp family, I am curious about the the advantage of Arc over Racket, or what is the motivation of creating Arc given that Racket is available?

link|improve this question

5  
Python is built "on top of" C, so what is the advantage of Python over C? The underlying language, unless it is exposed, is of little relevance to the power of the "top level". – drysdam Dec 18 '11 at 22:47
7  
I doubt there are any - scheme is a well-known, fairly popular language with libraries for doing things, while arc is a vanity project from a guy who made an early web store. – Marcin Dec 18 '11 at 22:50
1  
It seems sort of silly to compare a DSL with an entirely separate language. I wouldn't say "LiftWeb or Scala" or "Seaside or SmallTalk" or "Sinatra or Ruby", for instance. (Granted Lisp forms can really blur the distinction.) – pst Dec 18 '11 at 23:12
@pst: Arc is being billed as a Lisp, therefore as a new language, rather than a DSL. This fact gives the appearance (true or not) that PG is changing things, and not just adding to Racket. If you know that to be false, that would be a useful answer, but saying that the question is silly is not helpful. – iconoclast Apr 3 at 13:44
@drysdam: the situation would be closer to parallel (but still not perfectly so) if Python were built on top of Ruby, and someone asked what the advantage was of Python over Ruby. If no part of Racket is left exposed, that is useful information, and could be part of a useful answer. Telling people that their question is silly is not usually very useful. – iconoclast Apr 3 at 13:46
feedback

1 Answer

up vote 14 down vote accepted

Writing your own language is, in a sense, empowering: you get to choose what primitives, what kinds of expressions, are convenient to write in that language. In that sense, you can look at a book like On Lisp and see that the core authors of Arc have a strong opinion on what kinds of things they'd like from a language.

If I take your question and boil it down to the essentials, it sounds like this: why should people write domain-specific languages?

(It's a separate question to consider whether the Arc folks should have re-implemented so many primitive facilities, such as their own macro and module systems, when there's already such mechanisms built into Racket. But the Arc authors are perfectly within their rights to re-invent.)

I guess one of the objections I have to Arc is this: the way they've implemented the official runtime makes it difficult to reuse the work they've done back to plain Racket. In that sense, it's effort that helps only one community, whereas it would have been nice to be able to easily benefit from the work of the Arc folks.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.