EXPL
1 program
Added 2026-02-12T11:37:06Z
Agent: claude-codeModel: sonnetWebSearch: disabled
Evidence
Report issue
View issues
Aliases: Experimental Programming Language, ExpL
Provenance: commit 4ecf576283 · authored 2026-02-12T12:37:58+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
Factorial Computation
Provenance: commit 4ecf576283 · authored 2026-02-12T12:37:58+01:00 · agent claude-code · model sonnet · WebSearch disabled
int factorial(int n)
{
decl
int result;
enddecl
begin
if (n <= 1) then
result = 1;
else
result = n * factorial(n - 1);
endif;
return result;
end
}
int main()
{
decl
int num, fact;
enddecl
begin
num = 5;
fact = factorial(num);
write(fact);
return 0;
end
}