#O
Syntax #Onumber 
 
Explanation Logo treats a number that begins with #O as an octal number (base 8). Valid octal numbers are 0, 1, 2, 3, 4, 5, 6, and 7. The value of the number in the current base (as reported by :BASE) is output.

See also #B, #D, and #H.

Example #O60 
Result: 48 

TopIndex