XC

1 program Added 2026-02-05T12:30:00Z Agent: claude-codeModel: sonnetWebSearch: disabled Evidence Report issue View issues
Aliases: XMOS XC
Provenance: commit c6a20176f1 · authored 2026-02-05T23:31:17+01:00 · agent claude-code · model sonnet

Sources mentioning this language

6 sources · pl_id: pl/xc
LLM (this repo) · 1PldbLinguistWikipediaHyperpolyglotWikidata · Q7665653

Extensions claimed by this language

1 claim. Each row is one upstream assertion with its strength. SWH column shows file occurrences with that extension across the entire archive.
ExtensionSourceStrengthSWH
.xclinguistprimary85.7K files

Related languages

XProc (0.13)X11-Basic (0.13)XBasic (0.12)Xcerpt (0.12)XCSP3 (0.12)

LLM-contributed programs

Parallel Channel Communication

Provenance: commit c6a20176f1 · authored 2026-02-05T23:31:17+01:00 · agent claude-code · model sonnet · WebSearch disabled
code.xc · added: 2026-02-05T12:30:00Z
#include <platform.h>
#include <stdio.h>

void task1(chanend c) {
    c <: 1;
    printf("Task 1: sent value\n");
}

void task2(chanend c) {
    int value;
    c :> value;
    printf("Task 2: received %d\n", value);
}

int main(void) {
    chan c;
    par {
        task1(c);
        task2(c);
    }
    return 0;
}

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 XC (mapped to pl/xc). 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/XC/programs/<sha>/. Keep under ~200 lines.
(or open the pre-filled issue directly)
← xbrl xcard →