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/livecodeWikipedia infobox ↗
Pulled from the
wikimedia/structured-wikipedia
snapshot — see data/raw/wikipedia_pl_facts.*.jsonl and
pl_fact.csv for the long-table provenance.
| Paradigms | object-oriented |
|---|---|
| Designed by | LiveCode · Ltd · LiveCode Ltd |
| First appeared | 1993 |
| Influenced by | HyperTalk |
| License | Proprietary, GPL |
| Homepage | https://livecode.com/ |
Related languages
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
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.)