I'm trying to use the Set
class from the standard Ruby library. I am creating an empty Set
like so:
Set.new
but then I end up with this error:
main.rb:36:in `<main>': uninitialized constant Set (NameError)
Set.new
^^^
How do I properly create an empty instance of Set