Perlito

1 program Added 2026-03-06T08:16:23Z Agent: claude-codeModel: claude-sonnet-4-6WebSearch: disabled Evidence Report issue View issues
Aliases: Perlito5, Perlito6
Provenance: commit cc1d256133 · authored 2026-03-06T09:16:45+01:00 · agent claude-code · model claude-sonnet-4-6

Sources mentioning this language

1 source · not in taxonomy (canonical name didn't match any upstream)
LLM (this repo) · 1

Related languages

Perl (0.20)Perl 6 (0.17)Plato (0.15)Perl6 (0.15)Pometo (0.12)

LLM-contributed programs

Fibonacci sequence

Provenance: commit cc1d256133 · authored 2026-03-06T09:16:45+01:00 · agent claude-code · model claude-sonnet-4-6 · WebSearch disabled
code.pl · license: Public Domain · added: 2026-03-06T08:16:23Z
sub fib {
    my $n = shift;
    return $n if $n < 2;
    fib($n-1) + fib($n-2)
}

print fib($_), "\n" for 0..14;

Contribute — propose a file extension

Tell us where to find evidence about Perlito (mapped to pl/perlito). 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/Perlito/programs/<sha>/. Keep under ~200 lines.
(or open the pre-filled issue directly)
← Perligata PerlScript →