diff options
| author | Boris Verkhovskiy <boris.verk@gmail.com> | 2024-04-03 02:02:49 -0700 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2024-04-03 02:02:49 -0700 |
| commit | 616e40816dfdf90c2418477327729169db0274b3 (patch) | |
| tree | 0b5ae76e529c34f6648442815f535626eaeebf69 /toml.html.markdown | |
| parent | 3e22775a641831a82c59a3b6197240b2fcd9a76b (diff) | |
| parent | 638494ae2a0c089717f2bfff965da52e3b15a4f9 (diff) | |
Merge branch 'master' into elixir-casing
Diffstat (limited to 'toml.html.markdown')
| -rwxr-xr-x | toml.html.markdown | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/toml.html.markdown b/toml.html.markdown index 79aa544c..69dfd754 100755 --- a/toml.html.markdown +++ b/toml.html.markdown @@ -69,11 +69,15 @@ The first newline is trimmed in raw strings. ########### ## Integers can start with a +, a - or nothing. -## Leading zeros are not allowed. Hex, octal, and binary forms are not allowed. +## Leading zeros are not allowed. +## Hex, octal, and binary forms are allowed. ## Values that cannot be expressed as a series of digits are not allowed. int1 = +42 int2 = 0 int3 = -21 +int4 = 0xdeadbeef +int5 = 0o755 +int6 = 0b11011100 integerRange = 64 ## You can use underscores to enhance readability. Each |
