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/cfml
LLM (this repo) · 1PldbWikipediaWikidata · Q2524362

Wikipedia infobox

Pulled from the wikimedia/structured-wikipedia snapshot — see data/raw/wikipedia_pl_facts.*.jsonl and pl_fact.csv for the long-table provenance.

Paradigmsimperative · object-oriented
Designed byAdobe Systems (ColdFusion) · Lucee Association (Lucee) · New Atlanta · aw2.0 (openBD) · The Railo Company (Railo) · Jeremy Allaire · Joseph J. Allaire
First appeared1995
LicenseDepends on the implementation. Proprietary, LGPL, and GPL -licensed engines are all available
Implemented inJava
Homepagehttp://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.
ExtensionSourceStrengthSWH
.cfmlwikidataprimary800 files
.cfcwikipediaproposed441.6K files
.cfmwikipediaproposed619.7K files

Related languages

Lucifer (0.21)Lever (0.17)GSP (0.15)SSI (0.15)JSP (0.13)

LLM-contributed programs

Fibonacci Calculator

Provenance: commit 88b53b5b82 · authored 2026-02-11T12:20:06+01:00 · agent claude-code · model sonnet · WebSearch disabled
code.cfm · license: Apache-2.0 · added: 2026-02-11T11:19:50Z
<!--- 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.)

Contribute — propose a file extension

Tell us where to find evidence about Lucee (mapped to pl/cfml). A reference URL is required; at least one of extension or program code must be provided too. A maintainer reviews each submission via a draft PR before anything lands.
Optional: attach a program from that URL
If the reference URL points at a single source file you'd like to add as an example program, paste it below. The workflow will write it under languages/Lucee/programs/<sha>/. Keep under ~200 lines.
(or open the pre-filled issue directly)
← Luau lucene-query-syntax →