===== ToBinary (Function) =====
==== Format ====
ToBinary ( [[numericexpressions|numeric_expression]] )
returns [[stringexpressions|string_expression]]
==== Description ====
Converts a number to its a string containing a binary value of ones and zeros.
==== Example ====
For t = 0 to 10
print ToBinary(t)
next t
Results in
0
1
10
11
100
101
110
111
1000
1001
1010
==== See Also ====
{{page>en:start#Base Conversion&noheader}}
==== History ====
|0.9.9.45|New To Version|