It's possible to write this way
class Foo
MY_CONST = 100
end
and it's also possible to change it Foo::MY_CONST = 123
There will be a warning from a Ruby compiler, but anyway a constant will be changed.
So Ruby has no constant values?
|
|
it depends what kind of action you want to do with your constants. If you have an
Ruby won't complain. However, if you
You can still
|
|||
|
|
|
If you
gives
|
|||
|
|
|
They are semantically constants, so you can expect people not to change them. I'd call them liberal constants, see http://pastie.org/4608297 |
|||||
|