AMBIT
1 program
Added 2026-02-07T11:38:41Z
Agent: claude-codeModel: sonnetWebSearch: disabled
Evidence
Report issue
View issues
Aliases: AMBIT/G, AMBIT/L
Provenance: commit b1a8a36444 · authored 2026-02-07T12:49:17+01:00 · agent claude-code · model sonnet
Sources mentioning this language
4 sources · pl_id:
pl/ambitWikipedia infobox ↗
Pulled from the
wikimedia/structured-wikipedia
snapshot — see data/raw/wikipedia_pl_facts.*.jsonl and
pl_fact.csv for the long-table provenance.
| Designed by | Carlos Christensen |
|---|---|
| First appeared | 1964 |
| Influenced by | ALGOL 60 |
Related languages
LLM-contributed programs
String Character Replacement
Provenance: commit b1a8a36444 · authored 2026-02-07T12:49:17+01:00 · agent claude-code · model sonnet · WebSearch disabled
# AMBIT pattern matching example
# Replace all occurrences of 'a' with 'b' in a string
(DEFINE REPLACE-A-WITH-B (LAMBDA (S)
(IF (NULL S) NIL
(IF (EQ (CAR S) 'A)
(CONS 'B (REPLACE-A-WITH-B (CDR S)))
(CONS (CAR S) (REPLACE-A-WITH-B (CDR S)))))))
# Test the function
(REPLACE-A-WITH-B '(H E L L O A W O R L D A))
# Result: (H E L L O B W O R L D B)
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.)