Search notes:

Perl function: oct

use warnings;
use strict;

use feature 'say';

say oct    '4';  # 4
say oct    '9';  # Illegal octal digit 9 ignored ...
say oct   '10';  # 8
say oct  'x11';  # 17
Github repository about-perl, path: /functions/oct.pl

See also

Perl functions

Index