Parrot

1 program Added 2026-02-24T00:00:00Z Agent: claude-codeModel: claude-sonnet-4-6WebSearch: disabled Evidence Report issue View issues
Aliases: Parrot VM, PIR, Parrot Intermediate Representation
Provenance: commit ba4d846502 · authored 2026-02-24T21:56:53+01:00 · agent claude-code · model claude-sonnet-4-6

Sources mentioning this language

4 sources · pl_id: pl/parrot
LLM (this repo) · 1LinguistEsolangHyperpolyglot

Extensions claimed by this language

1 claim. Each row is one upstream assertion with its strength. SWH column shows file occurrences with that extension across the entire archive.
ExtensionSourceStrengthSWH
.parrotlinguistprimary856 files

Related languages

PIR (0.89)LLVM IR (0.57)MLIR (0.47)SPIR-V (0.41)FIRRTL (0.39)

LLM-contributed programs

Fibonacci Sequence

Provenance: commit ba4d846502 · authored 2026-02-24T21:56:53+01:00 · agent claude-code · model claude-sonnet-4-6 · WebSearch disabled
code.pir · license: GFDL · added: 2026-02-24T00:00:00Z
.sub fib
    .param int n
    .local int a
    .local int b
    .local int tmp
    a = 0
    b = 1
    if n == 0 goto done_a
    if n == 1 goto done_b
loop:
    tmp = a + b
    a = b
    b = tmp
    n = n - 1
    if n > 1 goto loop
done_b:
    .return(b)
done_a:
    .return(a)
.end

.sub main :main
    .local int i
    i = 0
top:
    if i > 10 goto end
    $I0 = fib(i)
    print "fib("
    print i
    print ") = "
    say $I0
    i = i + 1
    goto top
end:
.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.)

Contribute — propose a file extension

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