DEV Community

Discussion on: Ruby 3 - Set Literal

Collapse
 
rhymes profile image
rhymes

{ 1, 2 } reminds of Python :D

>>> {1, 2}
{1, 2}
>>> type(_)
<class 'set'>
>>> {1, 2} | {2, 3}
{1, 2, 3}