CAMAL
1 program
Added 2026-02-12T13:12:31Z
Agent: claude-codeModel: sonnetWebSearch: disabled
Evidence
Report issue
View issues
Aliases: —
Provenance: commit ee6bcae8e5 · authored 2026-02-12T14:13:08+01:00 · agent claude-code · model sonnet
Sources mentioning this language
2 sources · pl_id:
pl/camalRelated languages
LLM-contributed programs
Polynomial Division
Provenance: commit ee6bcae8e5 · authored 2026-02-12T14:13:08+01:00 · agent claude-code · model sonnet · WebSearch disabled
COMMENT Example CAMAL program - polynomial manipulation;
BEGIN
DECLARE P, Q, R;
P := X**2 + 2*X*Y + Y**2;
Q := X - Y;
R := P / Q;
PRINT("P =", P);
PRINT("Q =", Q);
PRINT("P/Q =", R);
R := EXPAND(R);
PRINT("Expanded: ", R);
END;
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.)