[ << ] | [ < ] | [ Up ] | [ > ] | [ >> ] | [Top] | [Contents] | [Index] | [ ? ] |
6.17.1.4 Case Sensitivity
Scheme as defined in R5RS is not case sensitive when reading symbols. Guile, on the contrary is case sensitive by default, so the identifiers
guile-whuzzy Guile-Whuzzy
are the same in R5RS Scheme, but are different in Guile.
It is possible to turn off case sensitivity in Guile by setting the
reader option case-insensitive
. For more information on reader
options, See section Reading Scheme Code.
(read-enable 'case-insensitive)
It is also possible to disable (or enable) case sensitivity within a
single file by placing the reader directives #!fold-case
(or
#!no-fold-case
) within the file itself.
This document was generated on April 20, 2013 using texi2html 5.0.