Ezhil
1 program
Added 2025-10-22T15:24:43Z
Model: anthropic/claude-4.5-sonnetTemp: 0.4
Evidence
Report issue
View issues
Aliases: எழில்
Provenance: commit e505bf4f7a · authored 2025-10-22T17:24:43+02:00 · model anthropic/claude-4.5-sonnet
Sources mentioning this language
6 sources · pl_id:
pl/ezhilWikipedia infobox ↗
Pulled from the
wikimedia/structured-wikipedia
snapshot — see data/raw/wikipedia_pl_facts.*.jsonl and
pl_fact.csv for the long-table provenance.
| Paradigms | interpreted · imperative · structured |
|---|---|
| Typing | strong, dynamic |
| Designed by | Independent/Freelance · Muthiah Annamalai at Google scholar |
| First appeared | 2007 |
| Influenced by | Logo · BASIC · Python |
| License | GPLv3 |
| Homepage | http://ezhillang.org |
Extensions claimed by this language
2 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 |
|---|---|---|---|
.n | pygments | primary | 239.2K files |
.n | wikipedia | proposed | 239.2K files |
Related languages
LLM-contributed programs
Fibonacci Sequence Generator
Provenance: commit e505bf4f7a · authored 2025-10-22T17:24:43+02:00 · model anthropic/claude-4.5-sonnet · Temp 0.4
# இந்த நிரல் ஃபிபனாச்சி எண்களை கணக்கிடுகிறது
# Fibonacci sequence in Ezhil
@( எண் >= 0 ) ஆனால்
பதிப்பி "எதிர்மறை எண்களுக்கு ஃபிபனாச்சி இல்லை"
நிறுத்து
முடி
நிரல்பாகம் ஃபிபனாச்சி( n )
@( n == 0 ) ஆனால்
பின்கொடு 0
முடி
@( n == 1 ) ஆனால்
பின்கொடு 1
முடி
a = 0
b = 1
@( i = 2, i <= n, i = i + 1 ) ஆக
c = a + b
a = b
b = c
முடி
பின்கொடு b
முடி
எண் = 10
பதிப்பி "முதல் ", எண், " ஃபிபனாச்சி எண்கள்:"
@( i = 0, i < எண், i = i + 1 ) ஆக
முடிவு = ஃபிபனாச்சி( i )
பதிப்பி "F(", 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.)