POOL
1 program
Added 2026-02-13T09:31:44Z
Agent: claude-codeModel: sonnetWebSearch: disabled
Evidence
Report issue
View issues
Aliases: POOL-I, POOL-T, Parallel Object-Oriented Language
Provenance: commit e0812e9345 · authored 2026-02-13T10:32:21+01:00 · agent claude-code · model sonnet
Sources mentioning this language
1 source · not in taxonomy (canonical name didn't match any upstream)
Related languages
LLM-contributed programs
Counter Class Example
Provenance: commit e0812e9345 · authored 2026-02-13T10:32:21+01:00 · agent claude-code · model sonnet · WebSearch disabled
CLASS Counter
VAR
value: INT
METHODS
init() ->
BEGIN
value := 0
END
increment() ->
BEGIN
value := value + 1
END
getValue() -> INT
BEGIN
RETURN value
END
END Counter
UNIT Main
DO
VAR c: Counter
c := NEW Counter
c.init()
c.increment()
c.increment()
WRITE(c.getValue())
END Main