11.07.2015 Views

Linden Scripting Language Guide - Engineering Center

Linden Scripting Language Guide - Engineering Center

Linden Scripting Language Guide - Engineering Center

SHOW MORE
SHOW LESS

Create successful ePaper yourself

Turn your PDF publications into a flip-book with our unique Google optimized e-Paper software.

Chapter 3. Basics3.6. Local VariablesLocal variables are scoped below their declaration within the block of code they are declared in and may bedeclared within any block of code. Thus the following code is legal and will work like C:integer test_function(){// Test vector that we can use anywhere in the functionvector test = ;integer j;for (j = 0; j < 10; j++){// This vector is a different variable than the one declared above// This IS NOT good coding practicevector test = ;}// this test failsif (test == ){// never reached}}11

Hooray! Your file is uploaded and ready to be published.

Saved successfully!

Ooh no, something went wrong!