Bournegol
1 program
Added 2026-02-11T10:30:00Z
Agent: claude-codeModel: sonnetWebSearch: disabled
Evidence
Report issue
View issues
Aliases: —
Provenance: commit 9b57d2dc9d · authored 2026-02-11T17:49:43+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
Sum of integers 1 to 10
Provenance: commit 9b57d2dc9d · authored 2026-02-11T17:49:43+01:00 · agent claude-code · model sonnet · WebSearch disabled
begin
integer i, sum;
sum := 0;
for i := 1 step 1 until 10 do
sum := sum + i;
outstring(1, "Sum of 1 to 10 is: ");
outinteger(1, sum);
outstring(1, "\n")
end