You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
This is a tracking issue for Chez Scheme support.
It supports R6RS.
The specific syntax can be found at Chez Scheme Syntax.
extended identifier
Identifiers can start with digit, or one of .+- as long as it is not parsed as a number
{ or } are identifiers
escape with \ or | in symbol
enclose between #{ and }
extra case insensitive radixes #2r, #3r, #4r, ..., #36r. Digit values from 10 through 35 are specified as either lower- or upper-case alphabetic characters, just as for hexadecimal numbers.
non decimal floating number and scientific notation
character
#\bel, #\ls, #\nel, #\nul, #\rubout, #\vt, #\vtab
octal character - #\ followed by a three octal digit sequence
fixnum vector #vfx()
Shared and cyclic structure
$primitive form #%xxx
#!eof, #!bwp
boolean - case insensitive #true, #false
The text was updated successfully, but these errors were encountered:
This is a tracking issue for Chez Scheme support.
It supports R6RS.
The specific syntax can be found at Chez Scheme Syntax.
.+-
as long as it is not parsed as a number{
or}
are identifiers\
or|
in symbol#{
and}
#2r
,#3r
,#4r
, ...,#36r
. Digit values from 10 through 35 are specified as either lower- or upper-case alphabetic characters, just as for hexadecimal numbers.#\bel
,#\ls
,#\nel
,#\nul
,#\rubout
,#\vt
,#\vtab
#\
followed by a three octal digit sequence#vfx()
$primitive
form#%xxx
#!eof
,#!bwp
#true
,#false
The text was updated successfully, but these errors were encountered: