Oz

1 program Added 2025-10-22T15:11:04Z Model: anthropic/claude-4.5-sonnetTemp: 0.4 Evidence Report issue View issues
Aliases: Mozart/Oz, Mozart
Provenance: commit aab12beee2 · authored 2025-10-22T17:11:04+02:00 · model anthropic/claude-4.5-sonnet

Sources mentioning this language

8 sources · pl_id: pl/oz
LLM (this repo) · 1PldbLinguistWikipediaEsolangHyperpolyglotRosettacodeWikidata · Q1208217

Wikipedia infobox

Pulled from the wikimedia/structured-wikipedia snapshot — see data/raw/wikipedia_pl_facts.*.jsonl and pl_fact.csv for the long-table provenance.

Paradigmsmulti-paradigm: logic · functional · imperative · object-oriented · constraint · distributed · concurrent
Typingdynamic
Designed byMozart Consortium · Gert Smolka · his students
First appeared1991
Influenced byErlang · Lisp · Prolog
LicenseMIT X11
Homepagehttp://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.
ExtensionSourceStrengthSWH
.ozlinguistprimary55.8K files

Related languages

Mozart-Oz (0.31)Mozart (0.27)Tart (0.18)Wart (0.18)KiXtart (0.15)

LLM-contributed programs

Quicksort Implementation in Oz

Provenance: commit aab12beee2 · authored 2025-10-22T17:11:04+02:00 · model anthropic/claude-4.5-sonnet · Temp 0.4
code.oz · license: GNU Free Documentation License · added: 2025-10-22T15:11:04Z
declare
  fun {QuickSort Xs}
     case Xs
     of nil then nil
     [] Pivot|Xr then
        Left Right
     in
        {Partition Xr Pivot Left Right}
        {Append {QuickSort Left} Pivot|{QuickSort Right}}
     end
  end

  proc {Partition Xs Pivot ?Left ?Right}
     Left = {Filter Xs fun {$ X} X < Pivot end}
     Right = {Filter Xs fun {$ X} X >= Pivot end}
  end
in
  {Show {QuickSort [3 1 4 1 5 9 2 6 5 3 5]}}
  {Show {QuickSort [8 7 6 5 4 3 2 1]}}
  {Show {QuickSort [1]}}
  {Show {QuickSort nil}}

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.)

Contribute — propose a file extension

Tell us where to find evidence about Oz (mapped to pl/oz). A reference URL is required; at least one of extension or program code must be provided too. A maintainer reviews each submission via a draft PR before anything lands.
Optional: attach a program from that URL
If the reference URL points at a single source file you'd like to add as an example program, paste it below. The workflow will write it under languages/Oz/programs/<sha>/. Keep under ~200 lines.
(or open the pre-filled issue directly)
← Oyster Ozone →