×
Menu
Index

OCT Subroutine

 
Usage:
s = OCT(n)
 
Description:
The OCT subroutine returns a string octal representation of the number n.
 
Example:
sub main()
   // Print 17
   printl(OCT(15))
end sub