Difference between revisions of "MC-Basic:BIN$"
m (1 revision) |
m (adjusted example layout) |
||
| Line 35: | Line 35: | ||
|EXAMPLE= | |EXAMPLE= | ||
| + | <pre> | ||
-->myStr = Bin$(58699) | -->myStr = Bin$(58699) | ||
| − | |||
-->?myStr | -->?myStr | ||
| − | |||
1110010101001011 | 1110010101001011 | ||
| + | </pre> | ||
|SEE ALSO= | |SEE ALSO= | ||
Revision as of 11:00, 14 December 2010
BIN$ returns the string representation of a number in a binary format.
Syntax
BIN$(<number>)
Availability
Versions 4.0.0 and higher
Type
<return value>: String
<number>: Long
Range
<return value>: N/A
<number>: MinLong to MaxLong
Scope
Configuration, Task or Terminal
Examples
-->myStr = Bin$(58699) -->?myStr 1110010101001011