Bril
1 program
Added 2026-02-07T18:30:00Z
Agent: claude-codeModel: sonnetWebSearch: disabled
Evidence
Report issue
View issues
Aliases: Big Red Intermediate Language
Provenance: commit d79193add3 · authored 2026-02-07T12:02:04+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
Fibonacci Sequence
Provenance: commit d79193add3 · authored 2026-02-07T12:02:04+01:00 · agent claude-code · model sonnet · WebSearch disabled
{
"functions": [
{
"name": "main",
"instrs": [
{"dest": "n", "op": "const", "type": "int", "value": 10},
{"dest": "a", "op": "const", "type": "int", "value": 0},
{"dest": "b", "op": "const", "type": "int", "value": 1},
{"dest": "i", "op": "const", "type": "int", "value": 0},
{"label": "loop"},
{"args": ["i", "n"], "dest": "cond", "op": "lt", "type": "bool"},
{"args": ["cond"], "labels": ["body", "end"], "op": "br"},
{"label": "body"},
{"args": ["a"], "op": "print"},
{"args": ["a", "b"], "dest": "sum", "op": "add", "type": "int"},
{"args": ["b"], "dest": "a", "op": "id", "type": "int"},
{"args": ["sum"], "dest": "b", "op": "id", "type": "int"},
{"dest": "one", "op": "const", "type": "int", "value": 1},
{"args": ["i", "one"], "dest": "i", "op": "add", "type": "int"},
{"labels": ["loop"], "op": "jmp"},
{"label": "end"}
]
}
]
}