From 8255e83912f908a6ea50f7989ac27b8587fca2b6 Mon Sep 17 00:00:00 2001 From: drbrain Date: Wed, 19 Dec 2012 07:30:58 +0000 Subject: * doc/syntax/literals.rdoc: Added 0d decimal format. Thanks Nobu! git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@38463 b2dd03c8-39d4-4d8f-98ff-823fe69b080e --- doc/syntax/literals.rdoc | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) (limited to 'doc') diff --git a/doc/syntax/literals.rdoc b/doc/syntax/literals.rdoc index 61743f7906..ea3c3d8135 100644 --- a/doc/syntax/literals.rdoc +++ b/doc/syntax/literals.rdoc @@ -43,13 +43,17 @@ Floating point numbers may be written as follows: These numbers have the same value, 12.34. You may use underscores in floating point numbers as well. -You can also write numbers in hexadecimal, octal or binary formats. For +You can use a special prefix to write numbers in decimal, hexadecimal, octal +or binary formats. For decimal numbers use a prefix of 0d, for hexadecimal numbers use a prefix of 0x, for octal numbers use a prefix of 0 or 0o, for binary numbers use a prefix of 0b. The alphabetic component of the number is not case-sensitive. Examples: + 0d170 + 0D170 + 0xaa 0xAa 0xAA -- cgit v1.2.3