ruby 非常酷炫的debug工具pry。
可以在想要断点的位置加入“binding.pry”,程序会在这里暂停,允许你在命令行里对已有对象进行操作。
require "pry"
a = [1, 2, 3]
a << 4
binding.pry # execution will pause here, allowing you to inspect all objects
a << 5
puts a
版权声明:本文为博主原创文章,未经博主允许不得转载。
时间: 2024-10-21 03:00:26