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/xcExtensions 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.| Extension | Source | Strength | SWH |
|---|---|---|---|
.xc | linguist | primary | 85.7K files |
Related languages
LLM-contributed programs
Parallel Channel Communication
Provenance: commit c6a20176f1 · authored 2026-02-05T23:31:17+01:00 · agent claude-code · model sonnet · WebSearch disabled
#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.)