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/parrotExtensions 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.| Extension | Source | Strength | SWH |
|---|---|---|---|
.parrot | linguist | primary | 856 files |
Related languages
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
.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.)