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/help/character.html | 2 +- docs/help/comment.html | 2 +- docs/help/infinity.html | 2 +- docs/help/minus.html | 2 +- docs/help/nullcharacter.html | 2 +- docs/help/pi.html | 2 +- docs/help/separator.html | 2 +- docs/help/string.html | 2 +- 8 files changed, 8 insertions(+), 8 deletions(-) (limited to 'docs/help') diff --git a/docs/help/character.html b/docs/help/character.html index 7a29a0f5..4675c644 100644 --- a/docs/help/character.html +++ b/docs/help/character.html @@ -6,7 +6,7 @@

Single Quote (')

'c': Character

-

→full documentation

+

→full documentation

A character literal whose value is the character between quotes. Any character can be used, even ' and newline.

↗️
    'a''b'
 "ab"
diff --git a/docs/help/comment.html b/docs/help/comment.html
index 70671d81..8b02d745 100644
--- a/docs/help/comment.html
+++ b/docs/help/comment.html
@@ -6,7 +6,7 @@
 
 

Number Sign (#)

#: Comment

-

→full documentation

+

→full documentation

Create a comment that extends to the end of the line.

Anything written in comments is ignored.

↗️
    1 + 2 # + 3 + 4
diff --git a/docs/help/infinity.html b/docs/help/infinity.html
index c607967e..8771e545 100644
--- a/docs/help/infinity.html
+++ b/docs/help/infinity.html
@@ -6,7 +6,7 @@
 
 

Infinity ()

: Infinity

-

→full documentation

+

→full documentation

Mathematical constant Infinity, a numeric literal. Can be negative (¯∞).

↗️
    
 ∞
diff --git a/docs/help/minus.html b/docs/help/minus.html
index c235aa75..ca43170a 100644
--- a/docs/help/minus.html
+++ b/docs/help/minus.html
@@ -6,7 +6,7 @@
 
 

Macron (¯)

¯: Minus

-

→full documentation

+

→full documentation

Prefix before numbers to indicate that they are negative.

Note that this is not the same as -, since it is part of the number, rather than a primitive that negates its value.

↗️
    -123
diff --git a/docs/help/nullcharacter.html b/docs/help/nullcharacter.html
index 24bcf67e..491642e8 100644
--- a/docs/help/nullcharacter.html
+++ b/docs/help/nullcharacter.html
@@ -6,7 +6,7 @@
 
 

Commercial At (@)

@: Null Character

-

→full documentation

+

→full documentation

Null character, code point 0 in ASCII. A shortcut character literal.

Add to a code point number to get that character.

↗️
    @+50
diff --git a/docs/help/pi.html b/docs/help/pi.html
index 3a947cb2..7d677211 100644
--- a/docs/help/pi.html
+++ b/docs/help/pi.html
@@ -6,7 +6,7 @@
 
 

Pi (π)

π: Pi

-

→full documentation

+

→full documentation

The mathematical constant pi, a numeric literal. Can be negative (¯π).

↗️
    π
 3.141592653589793
diff --git a/docs/help/separator.html b/docs/help/separator.html
index 3c104dbe..931d635e 100644
--- a/docs/help/separator.html
+++ b/docs/help/separator.html
@@ -6,7 +6,7 @@
 
 

Comma (,) and Diamond ()

, or : Separator

-

→full documentation

+

→full documentation

Separates statements in blocks, programs, and arrays. Characters , and are interchangeable with each other and with newline.

↗️
    a  3 ,  b  2
 2
diff --git a/docs/help/string.html b/docs/help/string.html
index d7d1e74a..18a6db4f 100644
--- a/docs/help/string.html
+++ b/docs/help/string.html
@@ -6,7 +6,7 @@
 
 

Double Quote (")

"str": String

-

→full documentation

+

→full documentation

Literal notation for a string, or list of characters. Double quotes must be escaped by writing them twice. Any other characters can be included directly.

↗️
    2  "string"
 'r'
-- 
cgit v1.2.3