Skip to content

Instantly share code, notes, and snippets.

@bkempner
Created September 7, 2011 18:25
Show Gist options
  • Save bkempner/1201318 to your computer and use it in GitHub Desktop.
Save bkempner/1201318 to your computer and use it in GitHub Desktop.
foo = case
when true
'foo'
else
'bar'
end
# foo = 'foo'
foo = case
when true
'foo'
'bar' if false
else
'cux'
end
# foo = nil
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment