SenseTalk

SenseTalk is a high-level English-like scripting language in the XTalk family, that supports both procedural and object-oriented paradigms. SenseTalk scripts are intended to be largely readable by ordinary people, including those with little to no training in programming.

SenseTalk
ParadigmPeople Oriented Programming, Multi-paradigm, Object-oriented
FamilyScripting language
Designed byDouglas Simons
DeveloperEggplant (software)
First appeared1992 (1992)
Stable release
2.15 / January 2024 (2024-01)
Typing disciplineDuck
LicenseProprietary
Filename extensions
  • .script
  • .st
Websitewww.sensetalk.com
Influenced by
xTalk, HyperTalk

To this end, SenseTalk includes a number of language elements that provide functionality oriented towards human tasks rather than the underlying machine behavior. For example, to check whether a quantity is divisible by 3, the script could use the expression if quantity is divisible by 3 or if quantity is a multiple of 3 , with the emphasis being on readability and a focus on the human concept of divisibility. Compare this to more traditional programming languages (C, Java, Python, etc.) where the same test would typically be written as if (quantity % 3) == 0 , with the focus being on the machine operations needed to determine the result.

This shift in focus away from the underlying machine computation, towards an English-like description of the behavior in human terms leads to the description of SenseTalk as a “People Oriented Programming language”.

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