Difference between revisions of "LSL Variables"

From Second Life Wiki
Jump to navigation Jump to search
m
Line 6: Line 6:


Some examples:
Some examples:
 
<pre>
<lsl>
integer l;
integer l;
float  x = 1.2;
float  x = 1.2;
string  n = "Lee";
string  n = "Lee";
</lsl>
</pre>


===scope===
===scope===
The variable name is in scope from the point it first appears to the end of the scope it is in, or the end of the script for global variables.  A name may not be defined twice in the same scope, but a name may be redefined in an inner scope, and it hides the same name at outer scope.  Again, the semantics are very similar to C and Java.
The variable name is in scope from the point it first appears to the end of the scope it is in, or the end of the script for global variables.  A name may not be defined twice in the same scope, but a name may be redefined in an inner scope, and it hides the same name at outer scope.  Again, the semantics are very similar to C and Java.

Revision as of 14:56, 19 February 2007

A variable is a place to store information, like a number or a string.

A variable has a name, a type, and a value. The name starts with a letter, and the name convention is similar to C or Java. Case matters. X is not the same as x.

LSL is a strongly and dynamically typed language. This means that variables must be declared by type and that variables may only hold values of a corresponding type.

Some examples:

<lsl>
integer l;
float   x = 1.2;
string  n = "Lee";
</lsl>

scope

The variable name is in scope from the point it first appears to the end of the scope it is in, or the end of the script for global variables. A name may not be defined twice in the same scope, but a name may be redefined in an inner scope, and it hides the same name at outer scope. Again, the semantics are very similar to C and Java.