Alef (programming language)

from Wikipedia, the free encyclopedia
Aleph
Publishing year: 1992
Developer: Phil Winterbottom
Influenced by: Newsqueak
Affected: limbo
Operating system : Plan 9

The Alef programming language was designed as part of the Plan 9 operating system by Phil Winterbottom, an employee of Bell Labs' research and development department .

In a presentation in February 2000, Rob Pike remarked, “... although Aleph is a fertile language, it has proven too difficult to maintain the development of a variant of the language across multiple architectures. So we took what we learned from her and created the thread library for C. "

example

This example was taken from the Alef Language Reference Manual. The excerpt illustrates the use of the data type tuple .

 (int, byte*, byte)
 func()
 {
  return (10, "hallo", c);
 }

 void
 main()
 {
   int a;
   byte* str;
   byte c;
   (a, str, c) = func();
 }

See also

  • Limbo , a direct successor to Aleph, the most widely used language of the Inferno operating system .

literature

Web links

Individual evidence

  1. Alef Language Reference Manual