Literals/Integer: Difference between revisions

m
Line 689:
=={{header|Delphi}}==
<lang Delphi>const
DEC_VALUE = 256; // decimal notation
INT_VALUE = 256;
HEX_VALUE = $100;< /lang>/ hexadecimal notation
BIN_VALUE = %100000000; // binary notation (since Delphi 10.4 version)
</lang>
 
=={{header|DWScript}}==
Anonymous user