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/quorumRelated languages
LLM-contributed programs
Array Iterator Example
Provenance: commit 52e04fa096 · authored 2026-02-05T22:27:17+01:00 · agent claude-code · model sonnet · WebSearch enabled
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.)