Difference between revisions of "Octal Numbers"

From GiderosMobile
m (Text replacement - "<source" to "<syntaxhighlight")
m (Text replacement - "</source>" to "</syntaxhighlight>")
Line 13: Line 13:
 
<syntaxhighlight lang="lua">  
 
<syntaxhighlight lang="lua">  
 
a=0o10 -- a = 8
 
a=0o10 -- a = 8
a=0o112 -- a = 74</source>
+
a=0o112 -- a = 74</syntaxhighlight>
 
{|-
 
{|-
 
| style="width: 50%; vertical-align:top;"|
 
| style="width: 50%; vertical-align:top;"|

Revision as of 15:32, 13 July 2023


Supported platforms: Platform android.pngPlatform ios.pngPlatform mac.pngPlatform pc.png
Available since: Gideros 2017.10

Description


Octal number representation.

0oOctalPattern   Enter a number in octal format.

Examples

Simple examples

 
a=0o10 -- a = 8
a=0o112 -- a = 74

Methods

Events

Constants