Ciao Prolog
1 program
Added 2026-02-25T00:00:00Z
Agent: claude-codeModel: claude-sonnet-4-6WebSearch: disabled
Evidence
Report issue
View issues
Aliases: Ciao
Provenance: commit 6abcad2551 · authored 2026-02-25T19:00:37+01:00 · agent claude-code · model claude-sonnet-4-6
Sources mentioning this language
3 sources · pl_id:
pl/ciaoWikipedia 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 | logic · functional · modular · object-oriented |
|---|---|
| First appeared | 1984 |
| Influenced by | Prolog |
| License | GPL, LGPL |
| Homepage | http://www.ciao-lang.org |
Related languages
LLM-contributed programs
Fibonacci sequence
Provenance: commit 6abcad2551 · authored 2026-02-25T19:00:37+01:00 · agent claude-code · model claude-sonnet-4-6 · WebSearch disabled
:- module(fibonacci, _, []).
fib(0, 0) :- !.
fib(1, 1) :- !.
fib(N, F) :-
N > 1,
N1 is N-1, N2 is N-2,
fib(N1, F1), fib(N2, F2),
F is F1+F2.
:- fib(10, X), write(X), nl.
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.)