RosettaCodeData/Task/Literals-Integer/Delphi/literals-integer.pas
2024-10-16 18:07:41 -07:00

4 lines
175 B
ObjectPascal

const
DEC_VALUE = 256; // decimal notation
HEX_VALUE = $100; // hexadecimal notation
BIN_VALUE = %100000000; // binary notation (since Delphi 10.4 version)