Wednesday, January 8, 2020

Constant in Ruby Programming

# A constant Value will start with Uppercase letter
# if you change the value then  you will be warned
C_CONST= 3.14
C_CONST = 1.6
puts C_CONST