Yeah, I’m not sure. I usually make most simple val...
# general
a
Yeah, I’m not sure. I usually make most simple value constants uppercase, like
FOO = 1
. But classes are title-case, e.g.
class Foo
. A union is probably closer to a value than a class technically, but I tend to use title case because they’re typically candidates for being converted to classes.