RosettaCodeData/Lang/AmbientTalk/00DESCRIPTION
2013-04-11 12:07:39 -07:00

31 lines
No EOL
1.5 KiB
Text

{{language|AmbientTalk
|strength=strong
|safety=safe
|express=explicit
|compat=duck
|checking=dynamic
|parampass=value
|gc=yes
|LCT=yes}}
AmbientTalk is a concurrent, distributed programming language designed specifically for mobile ad hoc networks. It's concurrency model is inspired by actors, and more specifically the event loop concurrency model of the [[E]] language. AmbientTalk has built-in support for distributed service discovery and (asynchronous) messaging.
The language was designed at the Software Languages Lab of the Vrije Universiteit Brussel, primarily as a research framework for exploring new concurrent and distributed language features for highly dynamic, decentralized networks, such as wireless, mobile ad hoc networks.
The default implementation of AmbientTalk is a Java interpreter, which features full interoperability with the JVM, enabling AmbientTalk code to use existing Java libraries, and enabling Java code to use AmbientTalk as a distributed scripting language. Recent version of AmbientTalk also run on the Android OS, making AmbientTalk portable across a wide range of mobile phones.
==Trying AmbientTalk==
[http://ambienttalk.googlecode.com The open source AmbientTalk interpreter]
To run an AmbientTalk program:
<lang sh>$ iat program.at</lang>
To get a [[REPL]] (aka prompt, shell, interactive interpreter):
<lang sh>$ iat</lang>
==See Also==
* [http://ambienttalk.googlecode.com Open source google code project]
* [http://soft.vub.ac.be/amop AmbientTalk home page] at the Software Languages Lab of the Vrije Universiteit Brussel.