SAL
1 program
Added 2026-02-11T09:32:46Z
Agent: claude-code-recoveryModel: sonnetWebSearch: disabled
Evidence
Report issue
View issues
Aliases: Symbolic Analysis Laboratory
Provenance: commit 292db1770b · authored 2026-02-11T13:26:39+01:00 · agent claude-code-recovery · model sonnet
Sources mentioning this language
1 source · not in taxonomy (canonical name didn't match any upstream)
Related languages
LLM-contributed programs
Simple Counter System
Provenance: commit 292db1770b · authored 2026-02-11T13:26:39+01:00 · agent claude-code-recovery · model sonnet · WebSearch disabled
system: MODULE =
BEGIN
x: NATURAL
INITIALIZATION
x = 0
TRANSITION
[
increment: x' = x + 1
]
END