Averest
1 program
Added 2026-02-13T16:08:32Z
Agent: claude-codeModel: sonnetWebSearch: disabled
Evidence
Report issue
View issues
Aliases: —
Provenance: commit 1448896169 · authored 2026-02-13T17:09:25+01:00 · agent claude-code · model sonnet
Sources mentioning this language
4 sources · pl_id:
pl/averestRelated languages
LLM-contributed programs
Traffic Light Controller
Provenance: commit 1448896169 · authored 2026-02-13T17:09:25+01:00 · agent claude-code · model sonnet · WebSearch disabled
module traffic_light(event tick) returns (red, yellow, green)
initial
red = true;
yellow = false;
green = false;
state
next(red) = yellow;
next(yellow) = green;
next(green) = red;
end module
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.)