Difference between revisions of "Keyword"

From Dragon Age Toolset Wiki
Jump to: navigation, search
(Created)
 
m
 
(2 intermediate revisions by the same user not shown)
Line 1: Line 1:
'''Keywords''' are reserved words that have a predefined and special meanings to the compiler. Keywords cannot be used as a function or variable's [[identifier]].
+
A [[keyword]] is a reserved word which has a predefined and special meaning to the compiler. Keywords cannot be used as a function or variable's [[identifier]].
  
The [[dascript]] keywords are:
+
The [[dascript]] compiler recognizes the following keywords:
  
 
* [[continue keyword|continue]]
 
* [[continue keyword|continue]]
Line 29: Line 29:
  
 
== Remarks ==
 
== Remarks ==
 +
 
The [[Script editor]]'s syntax highlighter treats the [[Boolean constant|boolean constants]] (TRUE and FALSE) as keywords.
 
The [[Script editor]]'s syntax highlighter treats the [[Boolean constant|boolean constants]] (TRUE and FALSE) as keywords.
  
 
== See also ==
 
== See also ==
 +
 
* [[:Category:Keywords|Keywords]]
 
* [[:Category:Keywords|Keywords]]
 +
 +
[[Category:Scripting]]

Latest revision as of 21:06, 18 February 2012

A keyword is a reserved word which has a predefined and special meaning to the compiler. Keywords cannot be used as a function or variable's identifier.

The dascript compiler recognizes the following keywords:

Remarks

The Script editor's syntax highlighter treats the boolean constants (TRUE and FALSE) as keywords.

See also