Arc (programming language)

Arc is a dialect of the Lisp programming language developed by Paul Graham and Robert Morris.

History

In 2001, Paul Graham announced that he was working on a new dialect of Lisp named "Arc". Over the years since, he has written several essays describing features or goals of the language, and some internal projects at Y Combinator have been written in Arc, most notably the Hacker News web forum and news aggregator program. Arc itself is written in Racket.[1]

In the essay Being Popular[2] Graham describes a few of his goals for the language. While many of the goals are very general ("Arc should be hackable," "there should be good libraries"), he did give some specifics. For instance, he believes that it is important for a language to be terse:

It would not be far from the truth to say that a hacker about to write a program decides what language to use, at least subconsciously, based on the total number of characters he'll have to type. If this isn't precisely how hackers think, a language designer would do well to act as if it were.

He also stated that it is better for a language to only implement a small number of "axioms", even when that means the language may not have features that large organizations want, such as object-orientation (OO). In fact, Graham feels that OO is not useful as its methods and patterns are just "good design", and he sees the language features used to implement OO as partially mistaken.[3][4] At Arc's introduction in 2008, Graham stated one of its benefits was its brevity.[5]

A controversy among Lisp programmers is whether, and how much, the S-expressions of the language should be complemented by other forms of syntax. Graham feels that additional syntax should be used in situations where pure S-expressions would be overly verbose, saying, "I don't think we should be religiously opposed to introducing syntax into Lisp." Graham also feels that efficiency problems should be solved by giving the programmer a good profiler.[6]

Reception

Upon its release in 2008, Arc generated mixed reactions, with some calling it simply an extension to Lisp or Scheme and not a programming language in its own right. Others applauded Arc for stripping Lisp down to bare essentials. Shortly after its release Arc was ported to JavaScript, as well as being supported by Schemescript, an IDE based on Eclipse (IDE).[7]

Examples

Hello world in Arc :

 (prn "Hello, World")

A program used by Paul Graham to illustrate Arc's terseness.[8] It produces a form with one field at the url "/said". When the form is submitted, it leads to a page with a link that says "click here", which itself leads to a page with the value of the original input field.

(defop said req
  (aform [onlink "click here" (pr "you said: " (arg _ "foo"))]
    (input "foo") 
    (submit)))

Versions

Official version

The first publicly released version of Arc was made available on 29 January 2008,[9] implemented on top of Racket ("PLT-Scheme" at that time). The release comes in the form of a .tar archive, containing the Racket source code for Arc. A tutorial[10] and a discussion forum[11] are also available. The forum uses the same program that Hacker News does, and is itself written in Arc.

Unofficial versions

Due to the slow development of the official Arc branch, some members of the Arc community started unofficial repositories with unofficial emendations, extensions and libraries. One version, Anarki,[12] permitted[13] anyone to submit changes to the project. The community-managed wiki[14] is a better source of information than the official site at this point.

Rainbow[15] is an implementation of Arc in Java.

Arcadia[16] is an implementation of Arc in C.

Timeline

References

  1. "Arc Programming Language". GitHub.
  2. Graham, Paul. "Being Popular".
  3. Graham, Paul. "Why Arc Isn't Especially Object-Oriented". Retrieved 2013-01-23.
  4. Graham, Paul. "Arc FAQ". Retrieved 2013-01-23.
  5. "Arc Makes Programs Shorter". Linux magazine.
  6. "Five Questions About Language Design".
  7. "Web pioneer hits critics with Lisp gauntlet". The Register. UK. 2008-02-07.
  8. Graham, Paul. "Take the Arc Challenge".
  9. Graham, Paul. "Arc's Out".
  10. "Tutorial", Arc, Y combinator .
  11. "Arc Forum". Arc language.
  12. "Anarki". Arc language. GitHub.
  13. "Announcement: anarki is no longer world-committable". Arc Forum. Arc language.
  14. "Arc Lang Wiki". Sites. Google.
  15. "Rainbow". Conanite. GitHub.
  16. "Arcadia". Kimtg. GitHub.
This article is issued from Wikipedia. The text is licensed under Creative Commons - Attribution - Sharealike. Additional terms may apply for the media files.