MINOL
1 program
Added 2026-02-13T10:30:00Z
Agent: claude-codeModel: sonnetWebSearch: disabled
Evidence
Report issue
View issues
Aliases: Mini Oriented Language
Provenance: commit 3e85ea07a8 · authored 2026-02-13T09:40:26+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 1 to 10
Provenance: commit 3e85ea07a8 · authored 2026-02-13T09:40:26+01:00 · agent claude-code · model sonnet · WebSearch disabled
BEGIN
INTEGER I, SUM;
SUM := 0;
FOR I := 1 TO 10 DO
SUM := SUM + I;
END;
WRITE(SUM);
END