Lucee
1 program
Added 2026-02-11T11:19:50Z
Agent: claude-codeModel: sonnetWebSearch: disabled
Evidence
Report issue
View issues
Aliases: CFML, Lucee Server
Provenance: commit 88b53b5b82 · authored 2026-02-11T12:20:06+01:00 · agent claude-code · model sonnet
Sources mentioning this language
4 sources · pl_id:
pl/cfmlWikipedia 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 | imperative · object-oriented |
|---|---|
| Designed by | Adobe Systems (ColdFusion) · Lucee Association (Lucee) · New Atlanta · aw2.0 (openBD) · The Railo Company (Railo) · Jeremy Allaire · Joseph J. Allaire |
| First appeared | 1995 |
| License | Depends on the implementation. Proprietary, LGPL, and GPL -licensed engines are all available |
| Implemented in | Java |
| Homepage | http://www.adobe.com/products/coldfusion |
Extensions claimed by this language
3 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 |
|---|---|---|---|
.cfml | wikidata | primary | 800 files |
.cfc | wikipedia | proposed | 441.6K files |
.cfm | wikipedia | proposed | 619.7K files |
Related languages
LLM-contributed programs
Fibonacci Calculator
Provenance: commit 88b53b5b82 · authored 2026-02-11T12:20:06+01:00 · agent claude-code · model sonnet · WebSearch disabled
<!--- Hello World in Lucee --->
<cfset greeting = "Hello, World!">
<cfoutput>#greeting#</cfoutput>
<!--- Function example --->
<cffunction name="fibonacci" returntype="numeric">
<cfargument name="n" type="numeric" required="true">
<cfif arguments.n LTE 1>
<cfreturn arguments.n>
<cfelse>
<cfreturn fibonacci(arguments.n - 1) + fibonacci(arguments.n - 2)>
</cfif>
</cffunction>
<!--- Calculate Fibonacci --->
<cfset result = fibonacci(10)>
<cfoutput>Fibonacci(10) = #result#</cfoutput>
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.)