ToBinary ( numeric_expression )
returns string_expression
Converts a number to its a string containing a binary value of ones and zeros.
For t = 0 to 10 print ToBinary(t) next t
Results in
0 1 10 11 100 101 110 111 1000 1001 1010
0.9.9.45 | New To Version |