Skip to content

Instantly share code, notes, and snippets.

@choallin
Created October 8, 2019 15:41
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save choallin/ebeb4511a0d40ff2ae6c40e3db927a39 to your computer and use it in GitHub Desktop.
Save choallin/ebeb4511a0d40ff2ae6c40e3db927a39 to your computer and use it in GitHub Desktop.
lexical_scoping
def test_method
 method_variable = 4
 different_variable = [1,2,3]
 different_variable.map do |number|
  number * method_variable
  end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment