Difference between revisions of "Identifiers"

From Catglobe Wiki
Jump to: navigation, search
(jrfconvert import)
 
 
(One intermediate revision by the same user not shown)
Line 1: Line 1:
[[Category:HelpBooks]]
+
[[Category:An_overview_of_CGScript]]

+
{{HelpFiles}}
  
 
===Identifiers===
 
===Identifiers===

Latest revision as of 06:22, 12 December 2011



Identifiers

In CGS, an identifier is a name assigned to a variable; it can be from one to several characters long. An identifier may start with a letter of the alphabet or an underscore but not a digit. Next may be a letter, a digit or an underscore. CGScript is a case sensitive so variable and Variable are different. Here are some examples of acceptable identifiers:

myVar x x2 y_y

MyVar _x x2_