string get_binary ( int number )
Returns the given number as binary (as represented by GM). The number is converted to binary using the binary functions inside GM, so the return value should basically be exactly as GM represents the given number in binary. This function could be useful when dealing with binary values of numbers.
The returned value is the binary of the number as string. Note that only positive numbers are accepted, since GM doesn't handle binary shift of negative numbers properly.