Project

General

Profile

Bug #17484 » ruby_3.rb

file in question - pabs08 (Pablo Vent), 12/28/2020 01:37 PM

 
def my_method(arr)
binding.pry
x = arr.all? do |num|
puts num
num > 3
"hi"
end
x
end

arr = [7, 0, 1]
p my_method(arr)
(3-3/3)