Converts an integer value to a binary value. |
integer = any valid integer or integer variable |
Command Description:
Converts integer values into binary values. If you don't know what binary is, you don't need to know this command :) |
Example:
intValue="64738" Print "The binary value of "+intValue+" is: " + bin$(intValue) |