In Ruby how does one create a private class constant? (i.e one that is visible inside the class but not outside)
class Person SECRET=\'xxx\' # How to make clas
Well...
@@secret = 'xxx'.freeze
kind of works.