如何在 pry 中引用较早的输出

How to reference an earlier output in pry

在 python 的 ipython 中,您可以通过以下方式引用输出:

In [15]: s = "abcd"

In [16]: s
Out[16]: 'abcd'

In [17]: Out[16]
Out[17]: 'abcd'

ruby 的 pry 的等价物是什么?

使用 _out__in_ 变量,如 docs 中所述。

例如:_out_[16]_out_[-1] 表示最后一个结果。