Difference between revisions of "WML for Complete Beginners: Chapter 8"

From The Battle for Wesnoth Wiki
(Created page with '==Chapter 8: Array, and Container Variables== So far we have only discussed ''scalar variables'', i.e. variables that have only one value at any given time. Believe it or not, t…')
 
m
Line 12: Line 12:
  
 
Container variables are not restricted to containing scalar variables, however. They can also store array variables.
 
Container variables are not restricted to containing scalar variables, however. They can also store array variables.
 +
 +
[[Category:WML_for_Complete_Beginners]]

Revision as of 21:19, 6 April 2014

Chapter 8: Array, and Container Variables

So far we have only discussed scalar variables, i.e. variables that have only one value at any given time. Believe it or not, there are types of variables than can store more than one value simultaneously, or even other variables.

Array Variables

Container Variables

Container variables are variables that contain other variables within themselves. Returning to the metaphor of boxes, let's say you had three small boxes, labeled "Apples", "Oranges", and "Pears", respectively. Instead of having to carry around three smaller boxes, wouldn't it be much easier if we could just put them all in one large box labeled "fruit"? Well, with container variables, you can!

Container variables are not restricted to containing scalar variables, however. They can also store array variables.