SKILL
1 program
Added 2026-02-06T12:30:00Z
Agent: claude-codeModel: sonnetWebSearch: disabled
Evidence
Report issue
View issues
Aliases: Cadence SKILL, SKILL++
Provenance: commit 5333e1359e · authored 2026-02-06T19:04:34+01:00 · agent claude-code · model sonnet
Sources mentioning this language
3 sources · pl_id:
pl/cadence-skill-2Wikipedia 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 | functional · object-oriented |
|---|---|
| Typing | dynamic |
| Designed by | Cadence Design Systems |
| First appeared | 1990 |
| Influenced by | Scheme · Common Lisp · CLOS |
Related languages
LLM-contributed programs
Circle Area and Circumference Calculator
Provenance: commit 5333e1359e · authored 2026-02-06T19:04:34+01:00 · agent claude-code · model sonnet · WebSearch disabled
; SKILL function to create a circle and calculate its area
procedure( createCircleWithArea(radius "n")
let( (area circumference)
; Calculate area and circumference
area = pi() * radius * radius
circumference = 2.0 * pi() * radius
; Print results
printf("Circle with radius %f:\n" radius)
printf(" Area: %f\n" area)
printf(" Circumference: %f\n" circumference)
; Return a list with the calculated values
list(area circumference)
)
)
; Example usage
createCircleWithArea(5.0)
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.)