Constants


The constant is declared with its name and value. Look at this example:

  program constantDeclaration;
  const minutesInHour = 60;
           hoursInDay = 24;
          famousQuote = 'To be or not to be';
  begin
  end.