Difference between revisions of "Octal Numbers"

From GiderosMobile
m (Text replacement - "<source" to "<syntaxhighlight")
Line 11: Line 11:
 
=== <translate>Examples</translate> ===
 
=== <translate>Examples</translate> ===
 
'''Simple examples'''<br/>
 
'''Simple examples'''<br/>
<source lang="lua">  
+
<syntaxhighlight lang="lua">  
 
a=0o10 -- a = 8
 
a=0o10 -- a = 8
 
a=0o112 -- a = 74</source>
 
a=0o112 -- a = 74</source>

Revision as of 15:30, 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
<syntaxhighlight lang="lua"> a=0o10 -- a = 8 a=0o112 -- a = 74</source>

Methods

Events

Constants