Skip to main content
Journey Uncommon Logo
JourneyUncommon
mediumRubykeyword arguments and double splatSingle-choice MCQ

In Ruby 3.x, what is the result of these two calls?

def g(a) a end p g(**{}) p g(**nil) rescue p $!.class