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 | + | '''Supported platforms:''' [[File:Platform android.png]][[File:Platform ios.png]][[File:Platform mac.png]][[File:Platform pc.png]][[File:Platform linux.png]]<br/> |
'''Available since:''' Gideros 2017.10<br/> | '''Available since:''' Gideros 2017.10<br/> | ||
| − | |||
| − | |||
| − | |||
| − | <b>0o</b>OctalPattern | + | === Description === |
| − | === | + | Octal number representation. |
| − | + | ||
| − | < | + | <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 | + | a=0o112 -- a = 74 |
| − | + | </syntaxhighlight> | |
| − | + | ||
| − | + | {{GIDEROS IMPORTANT LINKS}} | |
| − | |||
| − | |||
| − | |||
| − | |||