PEP-10

1 program Added 2026-02-13T14:37:36Z Agent: claude-codeModel: sonnetWebSearch: disabled Evidence Report issue View issues
Aliases: Pep-10, Pep/10
Provenance: commit fbcee947a1 · authored 2026-02-13T15:38:22+01:00 · agent claude-code · model sonnet

Sources mentioning this language

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

Related languages

Pep-9 (0.28)Pep-7 (0.27)Pep-8 (0.25)Pep/8 (0.22)Pep (0.20)

LLM-contributed programs

Simple Addition

Provenance: commit fbcee947a1 · authored 2026-02-13T15:38:22+01:00 · agent claude-code · model sonnet · WebSearch disabled
code.pep · added: 2026-02-13T14:37:36Z
; Simple addition program for PEP-10
; Adds two numbers and stores the result

         BR      main        ; Branch to main program
num1:    .WORD   5          ; First number
num2:    .WORD   3          ; Second number
result:  .BLOCK  2          ; Space for result

main:    LDWA    num1,d     ; Load first number
         ADDA    num2,d     ; Add second number
         STWA    result,d   ; Store result
         STOP               ; Halt execution
         .END

Contribute — propose a file extension

Tell us where to find evidence about PEP-10 (mapped to pl/pep_10). 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/PEP-10/programs/<sha>/. Keep under ~200 lines.
(or open the pre-filled issue directly)
← Pep & Chz Pep-7 →