Arc (programming language)#Examples
{{Short description|Open-source programming language}}
{{Distinguish|ARC Macro Language}}
{{Infobox programming language
| name = Arc
| logo =
| logo caption =
| screenshot =
| screenshot caption =
| paradigms = Multi-paradigm: functional, meta, procedural
| family = Lisp
| designer = Paul Graham
| developers = Paul Graham, Robert Morris,
Arc community
| released = {{Start date and age|2008|01|29|df=yes}}
| latest release version = 3.2
| latest release date = {{Start date and age|2018|10|28|df=yes}}{{cite web |url=http://arclanguage.org/item?id=20772 |title=Arc Forum: Tell Arc: Arc 3.2 |website=Arclanguage.org |access-date=2018-11-07}}
| latest preview version =
| latest preview date =
| typing = Dynamic
| scope =
| programming language = Racket
| operating system = Linux
| license = Artistic License 2.0
| file ext = .arc
| file format =
| website = {{URL|arclanguage.org}}
| implementations = Arc, Anarki, Arcadia, Rainbow
| dialects =
| influenced by = Lisp, Scheme
| influenced =
}}
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.
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.{{cite web |url=http://arclanguage.org/install |title=Arc Forum: install |website=Arclanguage.org |access-date=2018-11-07}}
Motives
In the essay Being Popular{{cite web |url=http://www.paulgraham.com/popular.html |title=Being Popular |last=Graham |first=Paul |date=May 2001 |website=PaulGraham.com |access-date=2018-12-05}} 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:
{{Quote |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.{{cite web |url=http://www.paulgraham.com/noop.html |title=Why Arc Isn't Especially Object-Oriented |last=Graham |first=Paul |website=PaulGraham.com |access-date=2018-12-05}}{{cite web |url=http://www.paulgraham.com/arcfaq.html |title=Arc FAQ |last=Graham |first=Paul |website=PaulGraham.com |access-date=2018-12-05}} At Arc's introduction in 2008, Graham stated one of its benefits was its brevity.{{cite magazine |last=Huber |first=Mathias |date=2008-02-08 |url=http://www.linux-magazine.com/Online/News/Arc-Makes-Programs-Shorter |title=Arc Makes Programs Shorter |magazine=Linux Magazine |location=Lawrence, Kansas |publisher=Linux New Media USA |access-date=2018-11-25}}
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.{{cite web |url=http://www.paulgraham.com/langdes.html |title=Five Questions About Language Design |last=Graham |first=Paul |date=May 2001 |website=PaulGraham.com |access-date=2018-12-05}}
= 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.{{cite web |url=https://www.theregister.co.uk/2008/02/07/lisp_arc_challenge/ |title=Web pioneer hits critics with Lisp gauntlet |website=The Register |date=2008-02-07 |place=UK}}
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.{{cite web |url=http://www.paulgraham.com/arcchallenge.html |title=Take the Arc Challenge |last=Graham |first=Paul |date=February 2008 |website=PaulGraham.com |access-date=2018-12-05}}
(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,{{cite web |url=http://www.paulgraham.com/arc0.html |title=Arc's Out |last=Graham |first=Paul |date=29 January 2008 |website=PaulGraham.com |access-date=2018-12-05}} 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 tutorial{{cite web |url=http://www.arclanguage.org/tut.txt |title=Arc Tutorial |author= |date= |website=Paul Graham |access-date=2018-12-05}}. and a discussion forum{{cite web |url=http://arclanguage.org/forum |title=Arc Forum |website=Arc language}} 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,{{cite web |url=https://github.com/arclanguage/anarki |title=Anarki |last=Rapp |first=Kenneth (kennethrapp) |date=14 November 2018 |website=GitHub |access-date=2018-12-05}} permitted{{cite web |url=http://arclanguage.org/item?id=17707 |title=Announcement: anarki is no longer world-committable |last=Agaram |first=Kartik (akkartik) |date=27 May 2013 |website=Arc Forum |publisher=Arc language |access-date=2018-12-05}} anyone to submit changes to the project and has a community managed wiki.{{cite web |url=https://sites.google.com/site/arclanguagewiki |title=Arc Lang Wiki |author= |date= |website=Sites |access-date=2018-12-05}}
Rainbow{{cite web |url=https://github.com/conanite/rainbow |title=Rainbow |last=Dalton |first=Conan (conanite) |date=12 October 2010 |website=GitHub |access-date=2018-12-05}} is an implementation of Arc in Java.
Arcadia{{cite web |url=https://github.com/kimtg/Arcadia |title=Arcadia |last=Kim |first=Taegyoon (kimtg) |date=19 August 2018 |website=GitHub |access-date=2018-12-05}} is an implementation of Arc in C.
Arc++{{cite web |url=https://github.com/kimtg/Arcpp |title=Arcpp |last=Kim |first=Taegyoon (kimtg) |date=13 August 2023 |website=GitHub |access-date=2023-08-13}} is an implementation of Arc in C++.
=Timeline of LISP Dialects=
{{Lisp}}
References
{{Reflist|64em}}
External links
- {{Official website|arclanguage.org}}
- [http://www.arclanguage.org/tut.txt Tutorial]
- {{GitHub|arclanguage/anarki|Anarki}}
{{Lisp programming language}}
Category:Dynamically typed programming languages