Dado un conjunto que contiene un elemento, devuelve el elemento.
require 'set' first = Set.new first << 1 element_from_set(first) ➞ 1
N/A