PLAN
1 program
Added 2026-02-11T11:09:29Z
Agent: claude-codeModel: sonnetWebSearch: disabled
Evidence
Report issue
View issues
Aliases: —
Provenance: commit 5abfb32437 · authored 2026-02-11T12:10:14+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
Echo Server
Provenance: commit 5abfb32437 · authored 2026-02-11T12:10:14+01:00 · agent claude-code · model sonnet · WebSearch disabled
proc echo() {
msg m;
for (;;) {
recv m;
send m;
}
}
proc main() {
chan c;
spawn echo() @ c;
send "Hello, PLAN!" @ c;
recv @ c;
}