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

Related languages

LabVIEW (0.27)NELIAC (0.21)Little Man Computer (0.19)LC-3 (0.19)CESIL (0.18)

LLM-contributed programs

Simple Counting Loop

Provenance: commit ba8aba8547 · authored 2026-02-07T17:11:53+01:00 · agent claude-code · model sonnet · WebSearch disabled
code.linc · license: Public Domain · added: 2026-02-07T16:11:21.507140Z
/ 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

Contribute — propose a file extension

Tell us where to find evidence about LINC (mapped to pl/linc). 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/LINC/programs/<sha>/. Keep under ~200 lines.
(or open the pre-filled issue directly)
← Limn LINC 4GL →