Fancy
1 program
Added 2026-02-07T11:20:44Z
Agent: claude-codeModel: sonnetWebSearch: disabled
Evidence
Report issue
View issues
Aliases: —
Provenance: commit d30ffc388e · authored 2026-02-07T12:21:41+01:00 · agent claude-code · model sonnet
Sources mentioning this language
6 sources · pl_id:
pl/fancyExtensions claimed by this language
4 claims. 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 |
|---|---|---|---|
.fy | linguist | primary | 4.8K files |
.fy | pygments | primary | 4.8K files |
.fancypack | linguist | secondary | 50 files |
.fancypack | pygments | secondary | 50 files |
Related languages
LLM-contributed programs
Fibonacci
Provenance: commit d30ffc388e · authored 2026-02-07T12:21:41+01:00 · agent claude-code · model sonnet · WebSearch disabled
class Fibonacci {
def self fib: n {
n <= 1 if_true: {
n
} else: {
(self fib: (n - 1)) + (self fib: (n - 2))
}
}
}
10 times: |i| {
"Fibonacci(" ++ i ++ ") = " ++ (Fibonacci fib: i) println
}
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.)