Created
April 24, 2020 15:34
-
-
Save ApertureDevelopment/c592f842129bc765266d681e172201d7 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
GlobalVar = "Global Variable, avaiable in every file and script" | |
local locVar = "Local variable, just avaiable in this file" | |
function test() | |
local funcVar = "Variable thats just avaiable inside our function" | |
for i=0, 1, 1 do | |
local loopVar = "Variable thats just avaiable inside our loop" | |
end | |
end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment