Difference between revisions of "Scripting terminology"

From Dragon Age Toolset Wiki
Jump to: navigation, search
m (C: Adding definition)
m (Adding definitions)
Line 1: Line 1:
 
[[Category:Glossaries]][[Category:Scripting]]
 
[[Category:Glossaries]][[Category:Scripting]]
 
{{TOC}}
 
{{TOC}}
<!-- === <span id="A">A</span> ===  
+
<!-- === <span id="A">A</span> === -->
-->
+
<!-- === <span id="B">B</span> === -->
<!-- === <span id="B">B</span> ===
+
-->
+
 
=== <span id="C">C</span> ===
 
=== <span id="C">C</span> ===
{{Definition|constant|A value which is known at compile time and does not change. A constant is declared using the [[const keyword]] and must be initialised with a value when it is declared.}}
+
{{Definition|Constant|A value which is known at compile time and does not change. A constant is declared using the [[const keyword]] and must be initialised with a value when it is declared.}}
 
+
{{Definition|Constructor|A function that creates an instance of a data type.}}
{{Definition|constructor|A function that creates an instance of a data type.}}
+
<!-- === <span id="D">D</span> === -->
 
+
<!-- === <span id="E">E</span> === -->
<!-- === <span id="D">D</span> ===
+
<!-- === <span id="F">F</span> === -->
-->
+
<!-- === <span id="G">G</span> === -->
<!-- === <span id="E">E</span> ===
+
<!-- === <span id="H">H</span> === -->
-->
+
=== <span id="I">I</span> ===
<!-- === <span id="F">F</span> ===
+
{{Definition|Include file|A non-executable script that can be referenced from, and merged with, another script using the [[include directive|#include directive]]}}.
-->
+
<!-- === <span id="J">J</span> === -->
<!-- === <span id="G">G</span> ===
+
<!-- === <span id="K">K</span> === -->
-->
+
<!-- === <span id="H">H</span> ===
+
-->
+
<!-- === <span id="I">I</span> ===
+
-->
+
<!-- === <span id="J">J</span> ===
+
-->
+
<!-- === <span id="K">K</span> ===
+
-->
+
 
+
 
=== <span id="L">L</span> ===
 
=== <span id="L">L</span> ===
{{Definition|literal|a textual representation of a value for a data type, for example, 12345 is a [[Int keyword|int]] literal, 123.45 is a [[Float keyword|float]] and, "Hello World" is a [[String keyword|string]] literal}}
+
{{Definition|literal|a textual representation of a value for a data type, for example, 12345 is a [[int keyword|int]] literal, 123.45 is a [[float keyword|float]] and, "Hello World" is a [[string keyword|string]] literal}}
 
+
<!-- === <span id="K">K</span> === -->
<!-- === <span id="K">K</span> ===
+
<!-- === <span id="K">K</span> === -->
-->
+
<!-- === <span id="M">M</span> === -->
<!-- === <span id="K">K</span> ===
+
<!-- === <span id="N">N</span> === -->
-->
+
<!-- === <span id="O">O</span> === -->
<!-- === <span id="M">M</span> ===
+
<!-- === <span id="P">P</span> === -->
-->
+
<!-- === <span id="Q">Q</span> === -->
<!-- === <span id="N">N</span> ===
+
<!-- === <span id="R">R</span> === -->
-->
+
<!-- === <span id="S">S</span> === -->
<!-- === <span id="O">O</span> ===
+
<!-- === <span id="T">T</span> === -->
-->
+
<!-- === <span id="U">U</span> === -->
<!-- === <span id="P">P</span> ===
+
<!-- === <span id="V">V</span> === -->
-->
+
<!-- === <span id="W">W</span> === -->
<!-- === <span id="Q">Q</span> ===
+
<!-- === <span id="X">X</span> === -->
-->
+
<!-- === <span id="Y">Y</span> === -->
<!-- === <span id="R">R</span> ===
+
<!-- === <span id="Z">Z</span> === -->
-->
+
<!-- === <span id="S">S</span> ===
+
-->
+
<!-- === <span id="T">T</span> ===
+
-->
+
<!-- === <span id="U">U</span> ===
+
-->
+
<!-- === <span id="V">V</span> ===
+
-->
+
<!-- === <span id="W">W</span> ===
+
-->
+
<!-- === <span id="X">X</span> ===
+
-->
+
<!-- === <span id="Y">Y</span> ===
+
-->
+
<!-- === <span id="Z">Z</span> ===
+
-->
+

Revision as of 14:26, 1 March 2012

Contents
A B C D E F G H I J K L M N O P Q R S T U V W X Y Z

C

Constant 
A value which is known at compile time and does not change. A constant is declared using the const keyword and must be initialised with a value when it is declared.
Constructor 
A function that creates an instance of a data type.

I

Include file 
A non-executable script that can be referenced from, and merged with, another script using the #include directive.

L

literal 
a textual representation of a value for a data type, for example, 12345 is a int literal, 123.45 is a float and, "Hello World" is a string literal