Easy
What are the values of a and b from Ruby v2.7 ?
a, b = raise rescue [1, 2]# => [1, 2]
Author: HivebriteStatus: PublishedQuestion passed 260 times
Edit
0
Community EvaluationsNo one has reviewed this question yet, be the first!
Similar QuestionsMore questions about Ruby
2
What is the output of the following code?
class Person
attr_accessor :name
end
person = Person.new
person.name = 'John'
puts person.name
1
What is the difference between include, extend and prepend in Ruby?0
Add the string 'toto' to an array in Ruby0
How to add a gem to a Ruby project?0
Write a test for a Ruby method that returns a string