Constant in Ruby
Answer:
In Ruby, a class constant has a name starting with an uppercase character, e.g.
Foo = 'bar'
puts Foo
Where you try to re-define the constant, a warning message will be shown, e.g.
Foo = 'bar'
Foo = '123'
(irb):18: warning: already initialized constant Foo