ToonTalk

ToonTalk
Paradigm concurrent constraint logic
Designed by Ken Kahn
Developer Ken Kahn
First appeared 1995
Stable release
3.0 / {2009}
Platform Desktop is Microsoft Windows and ToonTalk Reborn is HTML5
License Versions 1.0 and 2.0 had commercial licenses from several different publishers worldwide, but version 3.0 is now free. ToonTalk Reborn is BSD 3.0
Filename extensions .tt for Desktop ToonTalk
Website ToonTalk IDE and language (Animated Programs) and ToonTalk Reborn for the Web
Major implementations
ToonTalk IDE and ToonTalk Reborn for the Web
Dialects
Desktop ToonTalk and ToonTalk Reborn for the Web
Influenced by
Janus computer programming language;Actor model

ToonTalk is a computer programming system intended to be programmed by children. The "Toon" part stands for cartoon. The system's presentation is in the form of animated characters, including robots that can be trained by example. It is one of the few successful implementations outside academia of the concurrent constraint logic programming paradigm.

It was created by Kenneth M. Kahn in 1995,[1] and implemented as part of the ToonTalk IDE,[2] a software package distributed worldwide between 1996 and 2009. Since 2009, its specification is scholarly published[3] and its implementation is freely available.

Beginning 2014 a JavaScript HTML5 version of ToonTalk called ToonTalk Reborn for the Web[4][5][6] has been available. It runs on any modern web browser and differs from the desktop version of ToonTalk in a few ways. ToonTalk programs can run on any DOM element and various browser capabilities (audio, video, style sheets, speech input and output, and browser events) are available to ToonTalk programs. Web services such as Google Drive are integrated. ToonTalk Reborn is free and open source.

Beyond its life as a commercial product, ToonTalk evolved via significant academic use in various research projects, notably at the London Knowledge Lab and the Institute of Education - projects Playground and WebLabs, which involved research partners from Cambridge (Logotron), Portugal (Cnotinfor and the University of Lisbon), Sweden (Royal Institute of Technology), Slovakia (Comenius University), Bulgaria (Sofia University), Cyprus (University of Cyprus), and Italy (Institute for Educational Technology of the Consiglio Nazionale delle Ricerche). It was also source of academic interest in Sweden, where Mikael Kindborg proposed a static representation of ToonTalk programs [7] and in Portugal, where Leonel Morgado studied its potential to enable computer programming by preliterate children.[8]

ToonTalk was influenced by the Janus computer programming language and the Actor model. The main communication abstraction in ToonTalk is the bird/nest pair. When you (the programmer or a robot) give a thing to a bird, she flies to her nest and puts the thing in it, then returns. If one or more things already occupy the nest, the bird puts the new one underneath the others.

A ToonTalk program is a sequence of rules, where each rule has a head and a tail. The head is a pattern that can be matched against the argument, which must be a tuple. In ToonTalk's presentation, a rule appears as a robot, a program as a team of robots, and a tuple as a box that can have any number of holes or compartments in which things may be placed. The alphabet of things includes number pads, text pads, other boxes, robot teams, birds, nests, and things from some other categories. A process consists of a box with a team of robots working on it. If none of the patterns matches the box, the process suspends. Otherwise, the first rule that matches, fires. The end of the tail of the rule can either destroy the process, or continue it with the same team. In case the pattern calls for something other than an empty nest where an empty nest is present, the process suspends until some bird should place something on the nest (usually as a result of the actions of other processes). A nest with something on it matches the pattern as though the nest were not there, just the (top) something. The actions in the tail also manipulate the something rather than the whole nest. Consequently, a nest can be used to program a future.

ToonTalk can be given an imperative reading or a declarative reading. If we ignore certain constructs designed to facilitate I/O, we can see ToonTalk as not having any shared access to mutable memory. The bird/nest mechanism resembles the communication in the Actor model, but with the additional power to be able to pass nests around and for a process to hold more than one nest (which is also true in Janus). A difference between communication in the Actor model and in ToonTalk is that ToonTalk preserves the order of the messages; however, ToonTalk can also provide an indeterministic merge of message streams.

References

  1. Kahn, Ken (22–25 April 1995). "Metaphor Design - Case Study of An Animated Programming Environment" (PDF). Computer Game Developers' Conference (CGDC) Proceedings, 1995, 9th Annual World Famous. Computer Game Developers Conference. Computer Game Developers Conference. p. 241.
  2. Kahn, Ken (1996). "ToonTalk™—An Animated Programming Environment for Children" (PDF). Journal of Visual Languages and Programming. 7 (2): 197–217. doi:10.1006/jvlc.1996.0011. ISSN 1045-926X.
  3. Morgado, Leonel; Kahn, Ken (2008). "Towards a specification of the ToonTalk language" (PDF). Journal of Visual Languages and Programming. 19 (5): 574–597. doi:10.1016/j.jvlc.2007.10.002. ISSN 1045-926X.
  4. Kahn, Ken (2014). "TOONTALK REBORN Re-implementing and re-conceptualising ToonTalk for the Web" (PDF). Proceedings of the Constructionism 2014 Conference.
  5. Kahn, Ken (2016). Integrating programming languages with web browsers. http://cmu.us11.list-manage.com/track/click?u=fa4a7ca1f97066875abea84d1&id=f9def33e7a&e=4693519f32: Suksapattana Foundation. pp. 141–149. ISBN 978-616-92726-0-1.
  6. Kahn, Ken (2016-01-01). "A Demonstration of ToonTalk Where Children Build Programs by Demonstration in a Game World". Proceedings of the The 15th International Conference on Interaction Design and Children. IDC '16. New York, NY, USA: ACM: 676–679. doi:10.1145/2930674.2938611. ISBN 9781450343138.
  7. Mikael, Kindborg (2001). Representing ToonTalk programs as comic strips. Playground International Seminar. Casa de Vilar, Porto, Portugal.
  8. Morgado, Leonel (2005). Framework for Computer Programming in Preschool and Kindergarten (PDF) (doctoral thesis). Universidade de Trás-os-Montes e Alto Douro, Vila Real, Portugal.
Wikibooks has a book on the topic of: Software Engineers Handbook:Language Dictionary:ToonTalk
This article is issued from Wikipedia - version of the 11/18/2016. The text is available under the Creative Commons Attribution/Share Alike but additional terms may apply for the media files.