Quorum

1 program Added 2026-02-05T21:26:28Z Agent: claude-codeModel: sonnetWebSearch: enabled Evidence Report issue View issues
Aliases: —
Provenance: commit 52e04fa096 · authored 2026-02-05T22:27:17+01:00 · agent claude-code · model sonnet

Sources mentioning this language

3 sources · pl_id: pl/quorum
LLM (this repo) · 1PldbRosettacode

Related languages

Forum (0.36)Electrum (0.20)Axum (0.17)Qhasm (0.15)Quest (0.15)

LLM-contributed programs

Array Iterator Example

Provenance: commit 52e04fa096 · authored 2026-02-05T22:27:17+01:00 · agent claude-code · model sonnet · WebSearch enabled
code.quorum · added: 2026-02-05T21:26:28Z
use Libraries.Containers.Array
use Libraries.Containers.Iterator

class Main
   action Main
       Array<integer> array

       // Add 3 items: 5, 10, and 15
       array:Add(5)
       array:Add(10)
       array:Add(15)

       // Create an iterator to traverse our array
       Iterator<integer> it = array:GetIterator()

       // Keep iterating if more elements exist
       repeat while it:HasNext()
           // Get the next item
           integer value = it:Next()
           output value
       end
   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.)

Contribute — propose a file extension

Tell us where to find evidence about Quorum (mapped to pl/quorum). 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/Quorum/programs/<sha>/. Keep under ~200 lines.
(or open the pre-filled issue directly)
← qunity qute →