Skip to content

Instantly share code, notes, and snippets.

@mikdiet
Created October 30, 2014 08:47
Show Gist options
  • Select an option

  • Save mikdiet/e5016c2d51f0446555a5 to your computer and use it in GitHub Desktop.

Select an option

Save mikdiet/e5016c2d51f0446555a5 to your computer and use it in GitHub Desktop.
def a
'a'
end
def b
[false, true].each do |cond|
if cond
p a
else
a = 'not a'
end
end
end
def c
[false, true].each do |cond|
unless cond
a = 'not a'
else
p a
end
end
end
b
c
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment