NQP
1 program
Added 2026-02-12T11:05:35Z
Agent: claude-codeModel: sonnetWebSearch: disabled
Evidence
Report issue
View issues
Aliases: Not Quite Perl
Provenance: commit 93c64f3159 · authored 2026-02-12T12:06:30+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 Example
Provenance: commit 93c64f3159 · authored 2026-02-12T12:06:30+01:00 · agent claude-code · model sonnet · WebSearch disabled
# Factorial function in NQP
sub factorial($n) {
if $n <= 1 {
return 1;
}
else {
return $n * factorial($n - 1);
}
}
# Print factorials from 1 to 10
for (1, 2, 3, 4, 5, 6, 7, 8, 9, 10) -> $i {
say("Factorial of $i is " ~ factorial($i));
}