cfscript

Encloses a code block that contains cfscript statements.

You cannot use some CFML reserved words in this tag. You
cannot put a user-defined function whose name begins with any
of these strings within this tag:
cf,cf_,_cf,CFML,CFML_,_CFML

  <cfscript>

Examples
Sample code using the cfscript tag

<cfscript> 
 x = y = 1; 
 writeDump(x); 
 </cfscript>

CF 2018+ Optional to use semicolons at the end of a statement.

<cfscript> 
 a = 5 
 b = 10 
 writeDump(a+b) 
 </cfscript>

Expected Result: 15

Signup for cfbreak to stay updated on the latest news from the ColdFusion / CFML community. One email, every friday.

Fork me on GitHub