![]() |
![]() |
![]() |
|
BIN$
This command will return a 32 character string equivalent to the binary representation of the specified value provided.
Return String=BIN$(Value)
Value Integer
The value returned is the binary representation string of the specified value
The value provided should be an integer value.
PRINT "NUMBER:";42;" BINARY:";BIN$(42);" HEX:";HEX$(42)
|