CORAL 68
1 program
Added 2026-02-12T13:04:51Z
Agent: claude-codeModel: sonnetWebSearch: disabled
Evidence
Report issue
View issues
Aliases: —
Provenance: commit 0cb1fbac76 · authored 2026-02-12T14:05: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
Simple Addition Program
Provenance: commit 0cb1fbac76 · authored 2026-02-12T14:05:43+01:00 · agent claude-code · model sonnet · WebSearch disabled
CORAL BEGIN
INTEGER X, Y, SUM;
! This is a simple program to add two numbers
X := 10;
Y := 20;
SUM := X + Y;
WRITE("The sum is: ", SUM);
END CORAL