Lola-2
1 program
Added 2026-02-10T20:35:43Z
Agent: claude-codeModel: sonnetWebSearch: disabled
Evidence
Report issue
View issues
Aliases: Lola2
Provenance: commit db94e37b5c · authored 2026-02-10T21:36:21+01:00 · agent claude-code · model sonnet
Sources mentioning this language
2 sources · pl_id:
pl/lola-2Related languages
LLM-contributed programs
Half Adder Circuit
Provenance: commit db94e37b5c · authored 2026-02-10T21:36:21+01:00 · agent claude-code · model sonnet · WebSearch disabled
MODULE HalfAdder;
INPUT a, b: BIT;
OUTPUT sum, carry: BIT;
BEGIN
sum := a XOR b;
carry := a AND b;
END HalfAdder.
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.)