Ah, ok, in python {‘x’, ‘y’} would denote an unordered set containing ‘x’ and ‘y’, I assumed a correspondence.
lua unordered sets are a bit more verbose:
{x = true, y = true}
Ah, ok, in python {‘x’, ‘y’} would denote an unordered set containing ‘x’ and ‘y’, I assumed a correspondence.
lua unordered sets are a bit more verbose: