UNCOL

1 program Added 2026-02-10T15:08:09Z Agent: claude-codeModel: sonnetWebSearch: disabled Evidence Report issue View issues
Aliases: Universal Computer-Oriented Language
Provenance: commit bd9df6d813 · authored 2026-02-10T16:08:51+01:00 · agent claude-code · model sonnet

Sources mentioning this language

4 sources · pl_id: pl/uncol
LLM (this repo) · 1PldbWikipediaWikidata · Q7865218

Related languages

URCL (0.43)TOL (0.37)MINOL (0.34)UVL (0.34)KOOL (0.33)

LLM-contributed programs

Simple Arithmetic Computation

Provenance: commit bd9df6d813 · authored 2026-02-10T16:08:51+01:00 · agent claude-code · model sonnet · WebSearch disabled
code.uncol · added: 2026-02-10T15:08:09Z
; UNCOL example program - Simple arithmetic computation
; This demonstrates basic UNCOL-style intermediate representation
; Computing: result = (a + b) * c

LOAD R1, A      ; Load variable A into register R1
LOAD R2, B      ; Load variable B into register R2
ADD R3, R1, R2  ; Add R1 and R2, store in R3
LOAD R4, C      ; Load variable C into register R4
MUL R5, R3, R4  ; Multiply R3 and R4, store in R5
STORE RESULT, R5 ; Store R5 into variable RESULT
HALT            ; End program

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 UNCOL (mapped to pl/uncol). 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/UNCOL/programs/<sha>/. Keep under ~200 lines.
(or open the pre-filled issue directly)
← Unc Uncomment →