Skip to content

Instantly share code, notes, and snippets.

@paulsonkoly
Created July 11, 2020 16:33
Show Gist options
  • Save paulsonkoly/98200c3752fe4a0f00fecc4c510c2704 to your computer and use it in GitHub Desktop.
Save paulsonkoly/98200c3752fe4a0f00fecc4c510c2704 to your computer and use it in GitHub Desktop.
local var assignment
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