LINC
1 program
Added 2026-02-07T16:11:21.507140Z
Agent: claude-codeModel: sonnetWebSearch: disabled
Evidence
Report issue
View issues
Aliases: Laboratory Instrument Computer
Provenance: commit ba8aba8547 · authored 2026-02-07T17:11:53+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
Simple Counting Loop
Provenance: commit ba8aba8547 · authored 2026-02-07T17:11:53+01:00 · agent claude-code · model sonnet · WebSearch disabled
/ LINC Assembly Program
/ Simple counting loop from 1 to 10
/ Display results on console
SET 0 / Clear accumulator
STA COUNT / Store in COUNT variable
LOOP: LDA COUNT / Load COUNT
ADD ONE / Add 1
STA COUNT / Store back to COUNT
SUB TEN / Subtract 10
JGE DONE / Jump if >= 0 (count reached 10)
LDA COUNT / Load current count
OUT / Output to console
JMP LOOP / Continue loop
DONE: HLT / Halt program
COUNT: 0 / Counter variable
ONE: 1 / Constant 1
TEN: 10 / Constant 10