Skip to content

Instantly share code, notes, and snippets.

@naoto
Created November 15, 2010 00:47
Show Gist options
  • Save naoto/676272 to your computer and use it in GitHub Desktop.
Save naoto/676272 to your computer and use it in GitHub Desktop.
if で戻り値が返ってくる
#!/usr/bin/env ruby
hoge = 5
fuga = if hoge > 3
"big"
else
"small"
end
puts fuga #=> big
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment