[plt-scheme] How to make drscheme case-insensitive?
Grant Rettke skrev:
> How to make drscheme case-insensitive?
>
> I read about running mzscheme without case sensitivity but I'm not
> sure how this translates into making DrS run that way.
In DrScheme in the "Language" menu, click "Choose Language".
Then click the button "Show details". At the right remove
the tick in "Case sensitive".
If you want the code to work without changing settings
in DrScheme, an alternative is to prefix your module
(or a an expression) with #ci.
#ci(module ...)
#ci(let ([x 1] [X 2]) (+ x X)
See
http://download.plt-scheme.org/doc/370/html/mzscheme/mzscheme-Z-H-11.html#node_sec_11.2.4
--
Jens Axel Søgaard