Difference between revisions of "Octal Numbers"

From GiderosMobile
 
(8 intermediate revisions by 2 users not shown)
Line 1: Line 1:
 
__NOTOC__
 
__NOTOC__
'''Supported platforms:''' android, ios, mac, pc<br/>
+
<!-- GIDEROSOBJ:Octal Numbers -->
 +
'''Supported platforms:''' [[File:Platform android.png]][[File:Platform ios.png]][[File:Platform mac.png]][[File:Platform pc.png]]<br/>
 
'''Available since:''' Gideros 2017.10<br/>
 
'''Available since:''' Gideros 2017.10<br/>
 +
 
=== Description ===
 
=== Description ===
<translate><br />
+
Octal number representation.
Octal number representation.<br /><br />
+
 
 +
<b>0o</b>OctalPattern, enter a number in octal format
  
<b>0o</b>OctalPattern &emsp; Enter a number in octal format.<br /></translate>
 
 
=== Examples ===
 
=== Examples ===
'''Simple examples'''<br/>
+
<syntaxhighlight lang="lua">
<source 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;"|
+
 
=== Methods ===
+
{{GIDEROS IMPORTANT LINKS}}
| style="width: 50%; vertical-align:top;"|
 
=== Events ===
 
=== Constants ===
 
|}
 

Latest revision as of 04:02, 1 December 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

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