Ruby - Ecosystem and Best Practices
Consider this Ruby code using Pry:
What happens when this code runs?
require 'pry'
def greet(name)
binding.pry
"Hello, #{name}!"
end
puts greet('Alice')What happens when this code runs?
