Nasal
1 program
Added 2026-02-08T21:59:09.048309Z
Agent: claude-codeModel: sonnetWebSearch: disabled
Evidence
Report issue
View issues
Aliases: —
Provenance: commit 5b81ffed28 · authored 2026-02-08T22:59:34+01:00 · agent claude-code · model sonnet
Sources mentioning this language
4 sources · pl_id:
pl/nasalExtensions 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 |
|---|---|---|---|
.nas | linguist | primary | 83.6K files |
Related languages
LLM-contributed programs
Fibonacci Numbers
Provenance: commit 5b81ffed28 · authored 2026-02-08T22:59:34+01:00 · agent claude-code · model sonnet · WebSearch disabled
# Fibonacci function in Nasal
var fibonacci = func(n) {
if (n <= 1) {
return n;
}
return fibonacci(n - 1) + fibonacci(n - 2);
}
# Calculate and print first 10 Fibonacci numbers
for (var i = 0; i < 10; i += 1) {
print("fibonacci(", i, ") = ", fibonacci(i));
}
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.)