-
-
Save 844196/8e1fbc4ae65bde5b05dd to your computer and use it in GitHub Desktop.
短く書けた
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
if options[:n].nil? | |
renge.say(rand(renge.quotes.length)) | |
else | |
renge.say(options[:n].to_i) | |
end |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
renge.say(options[:n] || rand(renge.quotes.length)) |
こうも書けるが無駄に変数を宣言したくなかった
if options[:n]
n = rand(renge.quotes.length)
else
n = options[:n]
end
renge.say(n)
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-n INT
を受け取る段階で.to_i
した-n
が指定されない場合はoptions[:n]
はnil
なのでこれを持って条件判定したfalse
もしくはnil
の場合は偽となる