Menu
Home Explore People Places Arts History Plants & Animals Science Life & Culture Technology
On this page
Arc (programming language)
Open-source programming language

Arc is a programming language, a dialect of the language Lisp, developed by Paul Graham and Robert Morris. It is free and open-source software released under the Artistic License 2.0.

We don't have any images related to Arc (programming language) yet.
We don't have any YouTube videos related to Arc (programming language) yet.
We don't have any PDF documents related to Arc (programming language) yet.
We don't have any Books related to Arc (programming language) yet.
We don't have any archived web articles related to Arc (programming language) yet.

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 Graham's startup business incubator named Y Combinator have been written in Arc, most notably the Hacker News web forum and news aggregator program. Arc is written in Racket.1

Motives

In the essay Being Popular2 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 example, he believes 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). Further, Graham thinks that OO is not useful as its methods and patterns are just "good design", and he views the language features used to implement OO as partly mistaken.34 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 thinks that added 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 thinks that efficiency problems should be solved by giving the programmer a good profiler.6

Reception

When released 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, and was being supported by Schemescript, an integrated development environment (IDE) based on Eclipse.7

Examples

Hello world in Arc :

(prn "Hello, World")

To illustrate Arc's terseness, Graham uses a brief program. 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 then leads to a page with the value of the original input field.8

(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 Racket (named PLT-Scheme then). The release comes in the form of a .tar archive, containing the Racket source code for Arc. A tutorial10 and a discussion forum11 are also available. The forum uses the same program that Hacker News does, and is written in Arc.

Unofficial versions

Due to lack of updates in the official Arc branch, some members of the Arc community started their own repositories with unofficial modifications, extensions, and libraries. One version, Anarki,12 permitted13 anyone to submit changes to the project and has a community managed wiki.14

Rainbow15 is an implementation of Arc in Java.

Arcadia16 is an implementation of Arc in C.

Arc++17 is an implementation of Arc in C++.

Timeline of LISP Dialects

References

  1. "Arc Forum: install". Arclanguage.org. Retrieved 2018-11-07. http://arclanguage.org/install

  2. Graham, Paul (May 2001). "Being Popular". PaulGraham.com. Retrieved 2018-12-05. http://www.paulgraham.com/popular.html

  3. Graham, Paul. "Why Arc Isn't Especially Object-Oriented". PaulGraham.com. Retrieved 2018-12-05. http://www.paulgraham.com/noop.html

  4. Graham, Paul. "Arc FAQ". PaulGraham.com. Retrieved 2018-12-05. http://www.paulgraham.com/arcfaq.html

  5. Huber, Mathias (2008-02-08). "Arc Makes Programs Shorter". Linux Magazine. Lawrence, Kansas: Linux New Media USA. Retrieved 2018-11-25. http://www.linux-magazine.com/Online/News/Arc-Makes-Programs-Shorter

  6. Graham, Paul (May 2001). "Five Questions About Language Design". PaulGraham.com. Retrieved 2018-12-05. http://www.paulgraham.com/langdes.html

  7. "Web pioneer hits critics with Lisp gauntlet". The Register. UK. 2008-02-07. https://www.theregister.co.uk/2008/02/07/lisp_arc_challenge/

  8. Graham, Paul (February 2008). "Take the Arc Challenge". PaulGraham.com. Retrieved 2018-12-05. http://www.paulgraham.com/arcchallenge.html

  9. Graham, Paul (29 January 2008). "Arc's Out". PaulGraham.com. Retrieved 2018-12-05. http://www.paulgraham.com/arc0.html

  10. "Arc Tutorial". Paul Graham. Retrieved 2018-12-05.. http://www.arclanguage.org/tut.txt

  11. "Arc Forum". Arc language. http://arclanguage.org/forum

  12. Rapp, Kenneth (kennethrapp) (14 November 2018). "Anarki". GitHub. Retrieved 2018-12-05. https://github.com/arclanguage/anarki

  13. Agaram, Kartik (akkartik) (27 May 2013). "Announcement: anarki is no longer world-committable". Arc Forum. Arc language. Retrieved 2018-12-05. http://arclanguage.org/item?id=17707

  14. "Arc Lang Wiki". Sites. Retrieved 2018-12-05. https://sites.google.com/site/arclanguagewiki

  15. Dalton, Conan (conanite) (12 October 2010). "Rainbow". GitHub. Retrieved 2018-12-05. https://github.com/conanite/rainbow

  16. Kim, Taegyoon (kimtg) (19 August 2018). "Arcadia". GitHub. Retrieved 2018-12-05. https://github.com/kimtg/Arcadia

  17. Kim, Taegyoon (kimtg) (13 August 2023). "Arcpp". GitHub. Retrieved 2023-08-13. https://github.com/kimtg/Arcpp