Skip to main content
Journey Uncommon Logo
JourneyUncommon
mediumRubyStruct and DataSingle-choice MCQ

For a Struct created WITHOUT keyword_init in Ruby 3.2+, which call styles are accepted?

P = Struct.new(:a, :b) P.new(1, 2) P.new(a: 1, b: 2)