Reply to 1275864188070625280
@boennemann I have the habit of using enums with values, because I mostly use them to express a limited set of valid strings:
enum direction { UP = 'up', DOWN = 'down', LEFT = 'left', RIGHT = 'right' }
But yeah it would be a good idea to have enum values be e.g. a Symbol().