Bistro (programming language)

Bistro
Paradigm object-oriented
Designed by Nikolas S. Boyd
Developer Nikolas S. Boyd
First appeared 1999 (1999)
Stable release
3.8 / June 3, 2017 (2017-06-03)
Typing discipline dynamic, reflective
Website bitbucket.org/nik_boyd/bistro-smalltalk/
Influenced by
Java, Smalltalk

Bistro is a programming language designed and developed by Nikolas Boyd. It is intended to integrate features of Smalltalk and Java. Bistro Smalltalk runs atop any Java virtual machine conforming to Sun Microsystems' Java specification.

Description

Bistro is object oriented, dynamically typed, and reflective. It duplicates the vast majority of the syntax and API for Smalltalk, and introduces the package and import concepts from Java. Overloaded operators are available for certain operators; ++ and -- are not available overloaded operators.

The syntax for declaring a class's package and import clauses are:

package: my.package.subpackage;
import: my.package.MyClass;
import: my.package.*;

One notable exclusion is the ability to import static methods from other classes.

History

Nikolas S. Boyd created and released the first version of Bistro in 1999. [1] Bistro was updated in 2017, and has a new home.[2]

References

  1. Original Home
  2. Bistro Smalltalk Home
This article is issued from Wikipedia. The text is licensed under Creative Commons - Attribution - Sharealike. Additional terms may apply for the media files.