Self is an open source programming language created in 1987 by David Ungar.
#457on PLDB | 37Years Old | 36Repos |
Self is an object-oriented programming language based on the concept of prototypes. Self began as a dialect of Smalltalk, being dynamically typed and using just-in-time compilation (JIT) as well as the prototype-based approach to objects: it was first used as an experimental test system for language design in the 1980s and 1990s. In 2006, Self was still being developed as part of the Klein project, which was a Self virtual machine written fully in Self. Read more on Wikipedia...
'Hello World' printLine
(| "Hello World in Self"
hello = (| | 'Hello World!' print)
|)
_AddSlots: (| porsche911 <- sportsCar copy |).
porsche911 name:'Bobs Porsche'.
Feature | Supported | Example | Token |
---|---|---|---|
Strings | ✓ | 'Hello world' | ' |
Print() Debugging | ✓ | printLine | |
Message Passing | ✓ | ||
Semantic Indentation | X |