-
-
Save paulsonkoly/98200c3752fe4a0f00fecc4c510c2704 to your computer and use it in GitHub Desktop.
local var assignment
This file contains hidden or 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
def foo | |
13 | |
end | |
2.times do | |
p foo | |
foo = 'something else' | |
p foo | |
end | |
# >> 13 | |
# >> "something else" | |
# >> 13 | |
# >> "something else" | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment