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