From 77c6ab5c8435c9fcde7c4742ee0e5eb06341eeff Mon Sep 17 00:00:00 2001 From: Marshall Lochbaum Date: Thu, 7 Jul 2022 21:23:06 -0400 Subject: Separate token and constant documentation into its own page --- docs/doc/glossary.html | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'docs/doc/glossary.html') diff --git a/docs/doc/glossary.html b/docs/doc/glossary.html index 3588a8d8..daf3ec43 100644 --- a/docs/doc/glossary.html +++ b/docs/doc/glossary.html @@ -99,10 +99,10 @@
  • Primitive: One of several fixed operations defined by the language, denoted by a single-character token.
  • Word: A sequence of alphabetic or numeric characters.
  • Name: A word that starts with an alphabetic character. Names are compared case-insensitively and ignoring underscores _.
  • -
  • Numeric literal: A word that starts with a numeric character, indicating a number.
  • +
  • Numeric literal: A word that starts with a numeric character, indicating a number.
  • String literal: A literal written with double quotes "", indicating a string.
  • -
  • Character literal: A literal written with single quotes '', indicating a string.
  • -
  • Null literal: The literal @, indicating the null character (code point 0).
  • +
  • Character literal: A literal written with single quotes '', indicating a string.
  • +
  • Null literal: The literal @, indicating the null character (code point 0).
  • Grammar