Ch
1 program
Added 2026-02-05T12:30:00Z
Agent: claude-codeModel: sonnetWebSearch: disabled
Evidence
Report issue
View issues
Aliases: Ch interpreter
Provenance: commit 827f1f7d7f · authored 2026-02-05T23:47:31+01:00 · agent claude-code · model sonnet
Sources mentioning this language
4 sources · pl_id:
pl/chWikipedia infobox ↗
Pulled from the
wikimedia/structured-wikipedia
snapshot — see data/raw/wikipedia_pl_facts.*.jsonl and
pl_fact.csv for the long-table provenance.
| Designed by | SoftIntegration · Inc |
|---|---|
| First appeared | 2001 |
| License | Proprietary software Standard edition: freeware Student edition: freeware for students Professional edition: trialware for 30 days |
| Homepage | http://www.softintegration.com |
Related languages
LLM-contributed programs
Fibonacci Sequence
Provenance: commit 827f1f7d7f · authored 2026-02-05T23:47:31+01:00 · agent claude-code · model sonnet · WebSearch disabled
#include <stdio.h>
int fibonacci(int n) {
if (n <= 1)
return n;
return fibonacci(n-1) + fibonacci(n-2);
}
int main() {
int i;
printf("Fibonacci sequence:\n");
for (i = 0; i < 10; i++) {
printf("F(%d) = %d\n", i, fibonacci(i));
}
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.)