CFML, aka ColdFusion Markup Language, is a programming language created in 1995 by Jeremy Allaire.
#642on 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...
<cfset person = CreateObject("component", "Person") />
Feature | Supported | Example | Token |
---|---|---|---|
Constructors | ✓ | component { // properties property name="cheeseName"; // constructor function Cheese init( required string cheeseName ) { variables.cheeseName = arguments.cheeseName; return this; } } |