Dash
1 program
Added 2025-11-12T08:59:57Z
Model: x-ai/grok-4-fastTemp: 0.4
Evidence
Report issue
View issues
Aliases: Almquist shell
Provenance: commit 3f7b2e391b · authored 2025-11-12T09:59:57+01:00 · model x-ai/grok-4-fast
Sources mentioning this language
4 sources · pl_id:
pl/dashWikipedia 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 | Moving Picture Experts Group |
|---|---|
| First appeared | 2012 |
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.| Extension | Source | Strength | SWH |
|---|---|---|---|
.mpd | wikidata | primary | 19.6K files |
Related languages
LLM-contributed programs
Iterative Fibonacci sequence
Provenance: commit 3f7b2e391b · authored 2025-11-12T09:59:57+01:00 · model x-ai/grok-4-fast · Temp 0.4
# Iterative
f0=0
f1=1
echo $f0
echo $f1
for i in `seq 3 20`
do
fn=`echo "$f0 + $f1" | bc`
echo $fn
f0=$f1
f1=$fn
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.)