lslforge
lslforge copied to clipboard
LSLforge allows use of variables before declaration.
https://code.google.com/archive/p/lslforge/issues/54
Posted on Oct 5, 2014 by Grumpy Hippo
LSLforge allows local variables to be used before they have been declared. So, a line like this will be treated as valid, when really it won't compile:
string k = k + "1";
I wonder that this is not solved by https://github.com/RayZopf/lslforge-raysilent/commit/9fb49cc42b8fe99592290149fbe4fd92b84967b1
as it is a fix for another out of scope https://code.google.com/archive/p/lslforge/issues/9#c1 and some more stuff