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>
<cfscript>
x = y = 1;
writeDump(x);
</cfscript>
CF2018+ Optional to use semicolons at the end of a statement.
<cfscript>
a = 5
b = 10
writeDump(a+b)
</cfscript>