articles/smalltalk.md: update article

This commit is contained in:
tocariimaa 2025-03-02 14:14:06 -03:00
parent 29ef8436f3
commit 6b6467caaa

View file

@ -1,12 +1,16 @@
# Smalltalk # Smalltalk
Smalltalk is an object oriented (not the "modern" variant) and dynamic programming language created in Xerox PARC Smalltalk is a pure [object oriented](oop.md) (not the "modern" variant) and highly dynamic programming language created in Xerox PARC
by a group of scientists, including Alan Kay. by a group of scientists, including Alan Kay. Smalltalk builds upon a minimal set of primitive objects.
Being a highly dynamic language, Smalltalk is usually used in an [IDE](ide.md) supporting this paradigm by using
[GUI](gui.md) to allow for easier inspection of the program, but "headless" implementations of Smalltalk exist.
TODO TODO
## Implementations ## Implementations
- [Squeak](https://squeak.org/) - [Squeak](https://squeak.org/)
- [Pharo](https://pharo.org/) - [Pharo](https://pharo.org/)
- [GNU Smalltalk](https://www.gnu.org/software/smalltalk/) - [GNU Smalltalk](https://www.gnu.org/software/smalltalk/): headless implementation
- ... - ...
## Examples ## Examples