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

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
.pasmlinguistprimary6.4K files

Related languages

Assembly Language (0.59)MIXAL (0.41)PAL (0.40)OpenQASM (0.38)SYMBAL (0.37)

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
code.pasm · license: Artistic-2.0 · added: 2026-02-27T08:00:00Z
# 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.)

Contribute — propose a file extension

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