Skip to content

Instantly share code, notes, and snippets.

@devn
Created November 8, 2011 21:49
Show Gist options
  • Select an option

  • Save devn/1349367 to your computer and use it in GitHub Desktop.

Select an option

Save devn/1349367 to your computer and use it in GitHub Desktop.
block local variables
age = 26
name = "Devin"
1.upto(5) do |age;name|
age = 100
name = "Rip Van Winkle"
puts "#{name} is #{age} years old"
end
puts age # => 26
puts name # => "Devin"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment