Dado um conjunto contendo um elemento, retorne o elemento.
require 'set' first = Set.new first << 1 element_from_set(first) ➞ 1
N/A