m
no edit summary
(More details on Variables and a link to Talk) |
mNo edit summary |
||
| Line 41: | Line 41: | ||
local someOtherVar = true; -- someOtherVar declared inside an IF block. | local someOtherVar = true; -- someOtherVar declared inside an IF block. | ||
end | end | ||
Print(tostring(someOtherVar)); | |||
Print(tostring(someOtherVar)); | |||
if someOtherVar then | if someOtherVar then | ||
Print("Something"); -- This never gets executed. | Print("Something"); -- This never gets executed. | ||