*** Welcome to piglix ***

Lisaac

Lisaac
Lisaac logo.png
Paradigm object-oriented prototype-based
Designed by Benoît Sonntag
Developer Benoît Sonntag & Jérôme Boutet
First appeared 2003; 14 years ago (2003)
Stable release
0.13.1 (Specification) / February 17, 2008; 9 years ago (2008-02-17)
Typing discipline static typing
Major implementations
Lisaac
Influenced by
Smalltalk, Self, Eiffel

Lisaac is a statically typed prototype-based language conceived by Benoît Sonntag, in which the Isaac operating system is being written.

The developers of Lisaac also included features such as dynamic inheritance from Self and contract programming from Eiffel. Despite being statically typed, it also shows homoiconic properties. The Lisaac transpiler produces optimized ANSI C code. Compiling results show that it is possible to obtain executables from a high-level prototype-based language that are as fast as C programs.

Lisaac is case sensitive. Keywords are capitalized (Section, Header, Public, …), type identifiers are written in upper case letters (INTEGER, BOOLEAN, OBJECT, …), and identifiers denoting variables and slots are written in lower case letters. Objects are composed of slots, which can be data or code. The ':' symbol is used to declare types. Slot names are prefixed with a '+' or '-' symbol to indicate whether the slot is local to an object or shared between objects.

Parentheses are used to delimit lists of semicolon separated statements. Statement lists may have zero, one or more return values. The ':=' symbol is used to bind a slot to a statement or statement list that is executed at the loading/initialization of an object. The '<-' symbol is used to bind a slot to a statement list that is executed on the call of the slot.

The parent of each object is just a slot that can be assigned as required in the code, for instance:

In Lisaac, an operator is a slot and can be redefined. For example, overloading the + operator for a NUMERIC object:

Or for a matrix:

Generic objects are supported, for instance:

Contract programming using Z notation is provided.


...
Wikipedia

...