cast | |
ACTION: |
change or specify the type of a variable temporarily, in an expression
|
EXAMPLE: |
float f=100 print hex( cast(int) f) 'display the hexadecimal form of float f print hex( (int) f ) 'the same without using the 'cast' word |
RELATED: |
convert
?
union
|