I wonder if that idea was discussed, wasn't able to find.
There's short syntax for initializing Sets in Python. It seems to organically match syntax for Arrays and Objects:
let mySet = {'foo', 'bar', 'baz'} // = new Set(['foo', 'bar', 'baz'])
It even displays so in console:
Set(3) {'a', 'b', 'c'}
Just leaving it here for now, since I can't imagine how's that possible to promote/develop this idea.
Are there some advantages/drawbacks/stoppers?