-
Notifications
You must be signed in to change notification settings - Fork 81
Reserved Words
Andrew Dixon edited this page May 27, 2014
·
1 revision
There are very few reserved words in the Railo CFML templating language, but there are a few that cannot be used all over the place.
Those words are:
- null (since Railo 4.1)
- true
- false
<cfscript>
application = 1;
function = 1;
</cfscript>
is still valid, but since the words above are NOT valid, the following is NOT allowed :
<cfscript>
true = 1;
null = 1;
</cfscript>
In Railo Server scope names are always invoked first, which therefore basically makes all scope names, e.g. variables, url, form, session, etc... reserved words.
- Getting to know Railo Server
- Railo Server features & specifications
- Getting started with Railo Server
- Installation & configuration
- Railo Server Versions
- Developing with Railo Server
- Deploying Railo Server apps
- Managing Railo Server apps
- Railo Server Extensions
- Useful resources & further reading
- Developing & debugging Railo Server
- FAQs