GNU Smalltalk

1

GNU Smalltalk is an implementation of the Smalltalk programming language by the GNU Project. The implementation, unlike other Smalltalk environments, uses text files for program input and interprets the contents as Smalltalk code. In this way, GNU Smalltalk acts more like an interpreter rather than an environment in the traditional Smalltalk manner. GNU Smalltalk includes bindings for many free software libraries including SQLite, libSDL, cairo, gettext, and Expat.

Examples

These examples work only on GNU Smalltalk 3.0 and later versions. Classic Hello world example: Some basic Smalltalk code:

Collections

Constructing and using an array: Constructing and using a hash:

Blocks and iterators

Parameter-passing a block to be a closure: Returning closures from a method: Using block to send info back to the caller: Invoke the above method, passing it a block: Iterating over enumerations and arrays using blocks: A method such as inject:into: can accept both a parameter and a block. It iterates over each member of a list, performing some function on while retaining an aggregate. This is analogous to the foldl function in functional programming languages. For example: On the first pass, the block receives 10 (the argument to inject) as sum, and 1 (the first element of the array) as element, This returns 11. 11 then becomes sum on the next pass, which is added to 3 to get 14. 14 is then added to 5, to finally return 19. Blocks work with many built-in methods: Using an enumeration and a block to square the numbers 1 to 10:

Classes

The following code defines a class named Person. By deriving from Magnitude, it automatically defines all comparison methods except one. With the addition of that one, can sort by age. Note that we can override the way the object is printed/displayed (the default is to share the programmer-print and user-display representation) by overriding. The above prints three names in reverse age order:

Exceptions

An exception is raised with a call: An optional message can be added to the exception; there's also which raises a different kind of exception: These are actually wrappers for the actual exception raising method, : Exceptions are handled by blocks. Of course you can catch only particular exceptions (and their subclasses): It is possible to use the exception object, which is made available to the handler clause, to exit or resume the first block; exiting is the default, but can also be mentioned explicitly:

This article is derived from Wikipedia and licensed under CC BY-SA 4.0. View the original article.

Wikipedia® is a registered trademark of the Wikimedia Foundation, Inc.
Bliptext is not affiliated with or endorsed by Wikipedia or the Wikimedia Foundation.

Edit article