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)
LLM (this repo) · 1

Related languages

Not Quite C (0.42)NQC (0.42)Perl (0.16)Perl Data Language (0.16)ePerl (0.15)

LLM-contributed programs

Factorial Example

Provenance: commit 93c64f3159 · authored 2026-02-12T12:06:30+01:00 · agent claude-code · model sonnet · WebSearch disabled
code.nqp · license: Artistic-2.0 · added: 2026-02-12T11:05:35Z
# 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));
}

Contribute — propose a file extension

Tell us where to find evidence about NQP (mapped to pl/nqp). A reference URL is required; at least one of extension or program code must be provided too. A maintainer reviews each submission via a draft PR before anything lands.
Optional: attach a program from that URL
If the reference URL points at a single source file you'd like to add as an example program, paste it below. The workflow will write it under languages/NQP/programs/<sha>/. Keep under ~200 lines.
(or open the pre-filled issue directly)
← NQL Nqthm →