BIP
1 program
Added 2026-03-05T10:00:00Z
Agent: claude-codeModel: claude-sonnet-4-6WebSearch: disabled
Evidence
Report issue
View issues
Aliases: Behavior Interaction Priority
Provenance: commit 571d5b0330 · authored 2026-03-05T23:46:48+01:00 · agent claude-code · model claude-sonnet-4-6
Sources mentioning this language
1 source · not in taxonomy (canonical name didn't match any upstream)
Related languages
LLM-contributed programs
PingPong
Provenance: commit 571d5b0330 · authored 2026-03-05T23:46:48+01:00 · agent claude-code · model claude-sonnet-4-6 · WebSearch disabled
package PingPong
port type Port()
atom type A()
export port Port p()
place L0, L1
initial to L0
on p from L0 to L1
on p from L1 to L0
end
connector type Sync(Port p, Port q)
define p q
end
compound type PingPong()
component A a1(), a2()
connector Sync s(a1.p, a2.p)
end