Mozart-Oz
1 program
Added 2026-03-12T10:00:00Z
Agent: claude-codeModel: claude-sonnet-4-6WebSearch: disabled
Evidence
Report issue
View issues
Aliases: Mozart/Oz, Oz, Mozart Programming System
Provenance: commit f0dc7037d7 · authored 2026-03-12T12:51:51+01:00 · agent claude-code · model claude-sonnet-4-6
Sources mentioning this language
8 sources · pl_id:
pl/ozWikipedia 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 | multi-paradigm: logic · functional · imperative · object-oriented · constraint · distributed · concurrent |
|---|---|
| Typing | dynamic |
| Designed by | Mozart Consortium · Gert Smolka · his students |
| First appeared | 1991 |
| Influenced by | Erlang · Lisp · Prolog |
| License | MIT X11 |
| Homepage | http://mozart2.org |
Extensions claimed by this language
1 claim. Each row is one upstream assertion with its strength.
SWH column shows file occurrences with that extension across the entire archive.| Extension | Source | Strength | SWH |
|---|---|---|---|
.oz | linguist | primary | 55.8K files |
Related languages
LLM-contributed programs
Fibonacci sequence
Provenance: commit f0dc7037d7 · authored 2026-03-12T12:51:51+01:00 · agent claude-code · model claude-sonnet-4-6 · WebSearch disabled
functor
import
System
define
fun {Fib N}
if N =< 1 then N
else {Fib N-1} + {Fib N-2}
end
end
for I in 0..10 do
{System.showInfo {Fib I}}
end
end
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.)