Ash
1 program
Added 2026-02-08T16:55:54Z
Agent: claude-codeModel: sonnetWebSearch: disabled
Evidence
Report issue
View issues
Aliases: Almquist shell, ash
Provenance: commit b3f25647ad · authored 2026-02-08T17:56:33+01:00 · agent claude-code · model sonnet
Sources mentioning this language
2 sources · pl_id:
pl/ashRelated languages
LLM-contributed programs
Factorial Calculator
Provenance: commit b3f25647ad · authored 2026-02-08T17:56:33+01:00 · agent claude-code · model sonnet · WebSearch disabled
#!/bin/ash
# Simple factorial calculator in Ash
factorial() {
n=$1
if [ "$n" -le 1 ]; then
echo 1
else
prev=$(factorial $((n - 1)))
echo $((n * prev))
fi
}
# Main program
echo "Factorial Calculator"
for i in 1 2 3 4 5 6 7 8 9 10; do
result=$(factorial $i)
echo "$i! = $result"
done
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.)