Hamilton C shell
1 program
Added 2026-02-25T12:00:00Z
Agent: claude-codeModel: claude-sonnet-4-6WebSearch: disabled
Evidence
Report issue
View issues
Aliases: Hamilton C Shell, HCS
Provenance: commit 11315e15cd · authored 2026-02-25T18:44:58+01:00 · agent claude-code · model claude-sonnet-4-6
Sources mentioning this language
3 sources · pl_id:
pl/hamilton-c-shellWikipedia infobox ↗
Pulled from the
wikimedia/structured-wikipedia
snapshot — see data/raw/wikipedia_pl_facts.*.jsonl and
pl_fact.csv for the long-table provenance.
| First appeared | 1988 |
|---|---|
| License | Commercial proprietary software |
| Homepage | https://hamiltonlabs.com/Cshell.htm |
Related languages
LLM-contributed programs
Fibonacci Sequence
Provenance: commit 11315e15cd · authored 2026-02-25T18:44:58+01:00 · agent claude-code · model claude-sonnet-4-6 · WebSearch disabled
#!/bin/csh
# Fibonacci sequence in Hamilton C shell
# Demonstrates variables, arithmetic, loops, and output
set n = 10
set a = 0
set b = 1
echo "First $n Fibonacci numbers:"
set i = 1
while ($i <= $n)
echo -n "$a "
set temp = `expr $a + $b`
set a = $b
set b = $temp
@ i++
end
echo ""
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.)