12 lines
153 B
Plaintext
12 lines
153 B
Plaintext
|
|
integer BAR = 1;
|
||
|
|
integer BAZ = BAR;
|
||
|
|
list L = [1, 2];
|
||
|
|
|
||
|
|
default
|
||
|
|
{
|
||
|
|
state_entry()
|
||
|
|
{
|
||
|
|
llOwnerSay((string)BAZ + (string)L + (string)3);
|
||
|
|
}
|
||
|
|
}
|