Neha Patil (Editor)

AmbientTalk

Updated on
Edit
Like
Comment
Share on FacebookTweet on TwitterShare on LinkedInShare on Reddit
First appeared
  
2006

Typing discipline
  
dynamic, strong

Stable release
  
2.19 / April 2011

Designed by
  
Tom Van Cutsem, Stijn Mostinckx, Jessie Dedecker, Wolfgang De Meuter

Developer
  
Software Languages Lab, University of Brussels

AmbientTalk is an experimental object-oriented distributed programming language developed at the Programming Technology Laboratory at the Vrije Universiteit Brussel, Belgium. The language is primarily targeted at writing programs deployed in mobile ad hoc networks.

AmbientTalk is meant to serve as an experimentation platform to experiment with new language features or programming abstractions to facilitate the construction of software that has to run in highly volatile networks exhibiting intermittent connectivity and little infrastructure. It is implemented in Java which enables interpretation on various platforms, including Android. The interpreter standard library also provides a seamless interface between Java and AmbientTalk objects, called the symbiosis.

The language's concurrency features, which include support for futures and event-loop concurrency, are founded on the actor model and have been largely influenced by the E programming language. The language's object-oriented features find their influence in languages like Smalltalk (i.e. block closures, keyworded messages) and Self (prototype-based programming, traits, delegation).

Hello world

system.println("Hello world");

The classical "Hello, World!" program is not very representative of the language features. However, consider its distributed version:

References

AmbientTalk Wikipedia


Similar Topics