5 lines
175 B
ObjectPascal
5 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)
|