diff options
author | Rafael Garcia-Suarez <rgarciasuarez@gmail.com> | 2005-05-17 15:55:38 +0000 |
---|---|---|
committer | Rafael Garcia-Suarez <rgarciasuarez@gmail.com> | 2005-05-17 15:55:38 +0000 |
commit | 802a55ac9fc25e44a7cec31c7f4ed63e323d6f4a (patch) | |
tree | 620806fc93ee24b74cefdf1b45a42ea4bf3c464a /pod/perldata.pod | |
parent | abb2c24232c1dbd60ae39bdbb7e3cf487e3da996 (diff) | |
download | perl-802a55ac9fc25e44a7cec31c7f4ed63e323d6f4a.tar.gz |
Clarify definition of octal literals
(thanks to Olivier Blin)
p4raw-id: //depot/perl@24493
Diffstat (limited to 'pod/perldata.pod')
-rw-r--r-- | pod/perldata.pod | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/pod/perldata.pod b/pod/perldata.pod index 1b02b1e192..d828d4aca7 100644 --- a/pod/perldata.pod +++ b/pod/perldata.pod @@ -280,7 +280,7 @@ integer formats: 4_294_967_296 # underscore for legibility 0xff # hex 0xdead_beef # more hex - 0377 # octal + 0377 # octal (only numbers, begins with 0) 0b011011 # binary You are allowed to use underscores (underbars) in numeric literals |