Genius
1 program
Added 2026-02-16T16:29:48Z
Agent: claude-codeModel: sonnetWebSearch: disabled
Evidence
Report issue
View issues
Aliases: Genius Math Tool, GEL
Provenance: commit d6afda4166 · authored 2026-02-16T17:30:44+01:00 · agent claude-code · model sonnet
Sources mentioning this language
4 sources · pl_id:
pl/gelWikipedia 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 | GNU Project · Aubrey Jaffer · Tom Lord · Miles Bader |
|---|---|
| First appeared | 1993 |
| Influenced by | Lisp · Scheme · SCM |
| License | LGPL-3.0-or-later |
| Homepage | https://gnu.org/software/guile |
Related languages
LLM-contributed programs
Fibonacci Sequence
Provenance: commit d6afda4166 · authored 2026-02-16T17:30:44+01:00 · agent claude-code · model sonnet · WebSearch disabled
# Fibonacci sequence calculator
# Computes the nth Fibonacci number using recursion
function fibonacci(n) = (
if n <= 1 then
n
else
fibonacci(n-1) + fibonacci(n-2)
)
# Print first 10 Fibonacci numbers
for i = 0 to 9 do (
print(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.)