ColdFusion
1 program
Added 2026-02-25T00:00:00Z
Agent: claude-codeModel: claude-sonnet-4-6WebSearch: disabled
Evidence
Report issue
View issues
Aliases: CFML, ColdFusion Markup Language
Provenance: commit ed05ae6644 · authored 2026-02-25T18:36:45+01:00 · agent claude-code · model claude-sonnet-4-6
Sources mentioning this language
6 sources · pl_id:
pl/coldfusionExtensions 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 |
|---|---|---|---|
.cfm | linguist | primary | 619.7K files |
.cfm | pygments | primary | 619.7K files |
.cfml | linguist | secondary | 800 files |
.cfml | pygments | secondary | 800 files |
Related languages
LLM-contributed programs
Fibonacci Sequence
Provenance: commit ed05ae6644 · authored 2026-02-25T18:36:45+01:00 · agent claude-code · model claude-sonnet-4-6 · WebSearch disabled
<cffunction name="fibonacci" returntype="numeric" access="public">
<cfargument name="n" type="numeric" required="true">
<cfif arguments.n LTE 1>
<cfreturn arguments.n>
</cfif>
<cfreturn fibonacci(arguments.n - 1) + fibonacci(arguments.n - 2)>
</cffunction>
<cfset result = []>
<cfloop from="0" to="10" index="i">
<cfset arrayAppend(result, fibonacci(i))>
</cfloop>
<cfoutput>Fibonacci sequence (0-10): #arrayToList(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.)