back to Table of Contents


Bin$ (function)

Convert any given dec/hex/oct number into a binary string. Can handle positive and negative values and works in that similar to the QB64 built-in HEX$ and OCT$ functions.


SYNTAX:

binary$ = Bin$ (value&&)

INPUTS:

value&& (_INTEGER64)


RESULT:

binary$ (STRING)


NOTES:


back to Table of Contents