tn-soccerball
@tn-soccerball

Are you sure you want to delete the question?

If your question is resolved, you may close it.

Leaving a resolved question undeleted may help others!

We hope you find it useful!

ruby のメソッド

Q&A

「メソッドの戻り値をターミナルに表示」するには

puts メソッド名  

をメソッドの外で記述すれば良いのでしょうか?
他に方法はありますか?

0

2Answer

ppというデバッグ用のメソッドがあり、このメソッドを用いる方法もあります。(ppは引数の値をそのまま返します)
https://docs.ruby-lang.org/ja/latest/class/PrettyPrint.html
メソッド内に閉じたい場合は、値を返す直前でその値をppで標準出力に出すという手もあります

example.rb
def hoge
  pp someting #何かしらの処理
end
0Like

Your answer might help someone💌