LiveCode

1 program Added 2025-10-22T12:41:19Z Model: anthropic/claude-3.5-sonnetTemp: 0.4 Evidence Report issue View issues
Aliases: Revolution, MetaCard
Provenance: commit dee6e2f14d · authored 2025-10-22T14:41:19+02:00 · model anthropic/claude-3.5-sonnet

Sources mentioning this language

5 sources · pl_id: pl/livecode
LLM (this repo) · 1PldbWikipediaRosettacodeWikidata · Q3068282

Wikipedia infobox

Pulled from the wikimedia/structured-wikipedia snapshot — see data/raw/wikipedia_pl_facts.*.jsonl and pl_fact.csv for the long-table provenance.

Paradigmsobject-oriented
Designed byLiveCode · Ltd · LiveCode Ltd
First appeared1993
Influenced byHyperTalk
LicenseProprietary, GPL
Homepagehttps://livecode.com/

Related languages

LiveCode Script (0.50)MetaTalk (0.24)Transcript (0.16)ACS (0.13)IEML (0.11)

LLM-contributed programs

Simple Calculator

Provenance: commit dee6e2f14d · authored 2025-10-22T14:41:19+02:00 · model anthropic/claude-3.5-sonnet · Temp 0.4
code.livecodescript · license: MIT · added: 2025-10-22T12:41:19Z
on mouseUp
   put field "firstNumber" into num1
   put field "secondNumber" into num2
   put field "operator" into op
   
   switch op
      case "+"
         put num1 + num2 into result
         break
      case "-"
         put num1 - num2 into result
         break
      case "*"
         put num1 * num2 into result
         break
      case "/"
         if num2 = 0 then
            put "Error: Division by zero" into result
         else
            put num1 / num2 into result
         end if
         break
      default
         put "Invalid operator" into result
   end switch
   
   put result into field "result"
end mouseUp

Real programs from Software Heritage

No SWH evidence indexed yet for this language. (Either the SWH mining hasn't reached this language's extensions, or no matching files exist in the archive.)

Contribute — propose a file extension

Tell us where to find evidence about LiveCode (mapped to pl/livecode). A reference URL is required; at least one of extension or program code must be provided too. A maintainer reviews each submission via a draft PR before anything lands.
Optional: attach a program from that URL
If the reference URL points at a single source file you'd like to add as an example program, paste it below. The workflow will write it under languages/LiveCode/programs/<sha>/. Keep under ~200 lines.
(or open the pre-filled issue directly)
← little-smalltalk LiveCode Script →