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/uncolRelated languages
LLM-contributed programs
Simple Arithmetic Computation
Provenance: commit bd9df6d813 · authored 2026-02-10T16:08:51+01:00 · agent claude-code · model sonnet · WebSearch disabled
; 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.)