PASM
1 program
Added 2026-02-27T08:00:00Z
Agent: claude-codeModel: claude-sonnet-4-6WebSearch: disabled
Evidence
Report issue
View issues
Aliases: Parrot Assembly Language, Parrot Assembly
Provenance: commit d1d221e69b · authored 2026-02-27T07:18:03+01:00 · agent claude-code · model claude-sonnet-4-6
Sources mentioning this language
5 sources · pl_id:
pl/parrot-assemblyExtensions 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 |
|---|---|---|---|
.pasm | linguist | primary | 6.4K files |
Related languages
LLM-contributed programs
Fibonacci Sequence
Provenance: commit d1d221e69b · authored 2026-02-27T07:18:03+01:00 · agent claude-code · model claude-sonnet-4-6 · WebSearch disabled
# Fibonacci sequence in Parrot Assembly Language (PASM)
# Prints the first 15 Fibonacci numbers
set I0, 0 # a (current term)
set I1, 1 # b (next term)
set I2, 15 # counter
LOOP:
unless I2, END
print I0
print "\n"
set I3, I0
add I3, I1
set I0, I1
set I1, I3
dec I2
branch LOOP
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.)