Measures Concepts
GitHub icon

CFML

CFML - Programming language

< >

CFML, aka ColdFusion Markup Language, is a programming language created in 1995 by Jeremy Allaire.

#546on PLDB 29Years Old

ColdFusion Markup Language, more commonly known as CFML, is a scripting language for web development that runs on the JVM, the .NET framework, and Google App Engine. Multiple commercial and open source implementations of CFML engines are available, including Adobe ColdFusion, Lucee, New Atlanta BlueDragon (who makes both a Java-based and a .NET-based version), Railo, and Open BlueDragon as well as other CFML server engines.. Read more on Wikipedia...


Example from Wikipedia:
<cfset person = CreateObject("component", "Person") />

Language features

Feature Supported Token Example
Constructors ✓
component {
   // properties
   property name="cheeseName";
 
   // constructor
   function Cheese init( required string cheeseName ) {
      variables.cheeseName = arguments.cheeseName;
      return this;
   }
}

View source

- Build the next great programming language · Search · Add Language · Features · Creators · Resources · About · Blog · Acknowledgements · Queries · Stats · Sponsor · Day 605 · feedback@pldb.io · Logout