Term of the Moment

bcc


Look Up Another Term


Definition: LiveCode


A cross-platform, interpreted programming language from RunRev Ltd., Edinburgh, Scotland. LiveCode allows programmers to write the source code once and deploy to Windows, Mac, Linux, iOS and Android platforms. More like English, the language is devoid of cryptic symbols as found in C/C++, Java and many other programming languages. LiveCode derives its name because, like most interpreted languages, small sections of code can be executed independently without having to compile the entire program.

Formerly Runtime Revolution
LiveCode was formerly Runtime Revolution, named because of the target runtime engine that is packaged with the app. Revolution was originally MetaCard, a HyperCard-like language acquired by the company. Following is a source code example of opening a file named "a.xml" in LiveCode and C. See runtime engine and HyperCard.

  In LiveCode
  open file a.xml for read

  In C
  open("a.xml",O_RDONLY|O_BINARY);