diff options
author | Araq <rumpf_a@web.de> | 2015-01-02 03:21:56 +0100 |
---|---|---|
committer | Araq <rumpf_a@web.de> | 2015-01-02 03:21:56 +0100 |
commit | aa8073627faadbda8c51c32a88a797ce83c1ef69 (patch) | |
tree | 17b785cc01aa23104709de4446b9f9cc3c8dd682 | |
parent | b7187dc4950c244c831711c1cb34593bbc83e869 (diff) | |
parent | ddbf1d0969c0c2b2d9a49620b40e82bf53eb2485 (diff) | |
download | Nim-aa8073627faadbda8c51c32a88a797ce83c1ef69.tar.gz |
Merge branch 'devel' of https://github.com/Araq/Nim into devel
-rw-r--r-- | doc/tut1.txt | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/doc/tut1.txt b/doc/tut1.txt index 9d75b1ea2..4c32fa0ae 100644 --- a/doc/tut1.txt +++ b/doc/tut1.txt @@ -139,7 +139,7 @@ Numbers Numerical literals are written as in most other languages. As a special twist, underscores are allowed for better readability: ``1_000_000`` (one million). A number that contains a dot (or 'e' or 'E') is a floating point literal: -``1.0e9`` (one million). Hexadecimal literals are prefixed with ``0x``, +``1.0e9`` (one billion). Hexadecimal literals are prefixed with ``0x``, binary literals with ``0b`` and octal literals with ``0o``. A leading zero alone does not produce an octal. |