Marco van de Voort wrote:
oct: &088; // 1.9+ only
bin: %101010; // 1.9+ only
These also work for 1.0.10.
___
fpc-pascal maillist - [EMAIL PROTECTED]
http://lists.freepascal.org/mailman/listinfo/fpc-pascal
> How do you represent Hex values in FPX, I now I can use #141 for example
> using the ASCII value of the Hex characted converted ahead of time, but is
> there a way to send the Hex values like 0x70 for example?
hex: $45;
oct: &088; // 1.9+ only
bin: %101010; // 1.9+ only
char: #23; or chr
How do you represent Hex values in FPX, I now I can use #141 for example
using the ASCII value of the Hex characted converted ahead of time, but is
there a way to send the Hex values like 0x70 for example?
Thanks
___
fpc-pascal maillist - [EMAIL PROT