Menu
Home Explore People Places Arts History Plants & Animals Science Life & Culture Technology
On this page
Alef (programming language)
Discontinued concurrent programming language, designed as part of the Plan 9 operating system –

Alef is a discontinued concurrent programming language, designed as part of the Plan 9 operating system by Phil Winterbottom of Bell Labs. It implemented the channel-based concurrency model of Newsqueak in a compiled, C-like language.

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

History

Alef appeared in the first and second editions of Plan 9, but was abandoned during development of the third edition.12 Rob Pike later explained Alef's demise by pointing to its lack of automatic memory management, despite Pike's and other people's urging Winterbottom to add garbage collection to the language;3 also, in a February 2000 slideshow, Pike noted: "…although Alef was a fruitful language, it proved too difficult to maintain a variant language across multiple architectures, so we took what we learned from it and built the thread library for C."4

Alef was superseded by two programming environments. The Limbo programming language can be considered a direct successor of Alef and is the most commonly used language in the Inferno operating system. The Alef concurrency model was replicated in the third edition of Plan 9 in the form of the libthread library, which makes some of Alef's functionality available to C programs and allowed existing Alef programs (such as Acme) to be translated.5

Example

This example was taken from the Alef reference manual.6 The piece illustrates the use of the tuple data type.

(int, byte*, byte) func() { return (10, "hello", 'c'); } void main() { int a; byte* str; byte c; (a, str, c) = func(); }

See also

References

  1. Winterbottom, Phil (1995). "Alef Language Reference Manual". Plan 9 Programmer's Manual: Volume Two. Murray Hill: AT&T. http://doc.cat-v.org/plan_9/2nd_edition/papers/alef/ref

  2. "Preface to the Third (2000) Edition". Plan 9 Manual. Murray Hill: Bell Labs. June 2000. Archived from the original on 2015-02-05. Retrieved 2012-10-29. https://web.archive.org/web/20150205030100/http://plan9.bell-labs.com/sys/man/preface3.html

  3. Pike, Rob (2010). Origins of Go concurrency style. OSCON Emerging Languages Camp. Archived from the original on 2021-12-13. https://www.youtube.com/watch?v=3DtUzH3zoFo

  4. Pike, Rob. "Rio: Design of a Concurrent Window System" (PDF). Retrieved 8 March 2013. http://doc.cat-v.org/plan_9/3rd_edition/rio/rio_slides.pdf

  5. "thread(2)". Plan 9 Manual. Retrieved 2012-10-29. http://plan9.bell-labs.com/magic/man2html/2/thread

  6. Winterbottom, Phil (1995). "Alef Language Reference Manual". Plan 9 Programmer's Manual: Volume Two. Murray Hill: AT&T. http://doc.cat-v.org/plan_9/2nd_edition/papers/alef/ref