Difference between revisions of "MC-Basic:BIN$"

From SoftMC-Wiki
Jump to: navigation, search
m (Miborich moved page Axystems:MC-Basic:BIN$ to MC-Basic:BIN$: Global renaming of Axystems: namespace into (Main):)
Line 41: Line 41:
  
 
|SEE ALSO=
 
|SEE ALSO=
* [[Axystems:MC-Basic:HEX$|HEX$]]
+
* [[MC-Basic:HEX$|HEX$]]
  
  

Revision as of 08:38, 22 May 2014

BIN$ returns the string representation of a number in a binary format.

Syntax

BIN$(<number>)

Availability

Since Version 4.0.0

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

See Also