From 581489b64fd894d49f91a8383f50d1a11ce73e98 Mon Sep 17 00:00:00 2001 From: Alexander Iljin Date: Tue, 20 Jun 2017 21:51:14 +0300 Subject: [PATCH] sytax-docs: mention that numbers may contain commas --- core/syntax/syntax-docs.factor | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/core/syntax/syntax-docs.factor b/core/syntax/syntax-docs.factor index 448b02def1..0122df285c 100644 --- a/core/syntax/syntax-docs.factor +++ b/core/syntax/syntax-docs.factor @@ -34,11 +34,11 @@ ARTICLE: "syntax-immediate" "Parse time evaluation" } ; ARTICLE: "syntax-integers" "Integer syntax" -"The printed representation of an integer consists of a sequence of digits, optionally prefixed by a sign." +"The printed representation of an integer consists of a sequence of digits, optionally prefixed by a sign and arbitrarily separated by commas." { $code "123456" "-10" - "2432902008176640000" + "2,432,902,008,176,640,000" } "Integers are entered in base 10 unless prefixed with a base-changing prefix. " { $snippet "0x" } " begins a hexadecimal literal, " { $snippet "0o" } " an octal literal, and " { $snippet "0b" } " a binary literal. A sign, if any, goes before the base prefix." { $example