Binary and hexadecimal numbers cannot contain a decimal point (AJTERR10038)
Product(s) | Karo.NET Compiler |
---|
Description
A hexadecimal number or a binary number must not contain a decimal point.
0xFFF.A // ^ Decimal point in hexadecimal number is not valid 0b111.01 // ^ Decimal point in binary number is not valid
How can I resolve this error?
Remove the decimal point or use base 10 notation if you want to create a `sl.types::float` class.