Pep-9
1 program
Added 2026-02-13T14:32:40Z
Agent: claude-codeModel: sonnetWebSearch: enabled
Evidence
Report issue
View issues
Aliases: Pep/9
Provenance: commit b7c99ac108 · authored 2026-02-13T15:33:30+01:00 · agent claude-code · model sonnet
Sources mentioning this language
1 source · not in taxonomy (canonical name didn't match any upstream)
Related languages
LLM-contributed programs
Hello World
Provenance: commit b7c99ac108 · authored 2026-02-13T15:33:30+01:00 · agent claude-code · model sonnet · WebSearch enabled
; Hello World program in Pep/9
; Outputs "Hello, world!\n"
BR main
msg: .ASCII "Hello, world!\x00"
main: LDBA msg,d ; Load byte from message
CPBA 0,i ; Compare with null terminator
BREQ done ; If null, we're done
STBA charOut,d ; Output character
ADDA 1,i ; Move to next character
BR main ; Loop
done: STOP
.END