Re: Case Sensitive, Multiline Comments
- From: "John Roth" <newsgroups@xxxxxxxxxxxx>
- Date: Fri, 27 May 2005 08:41:14 -0600
"Duncan Booth" <duncan.booth@xxxxxxxxxxxxxxx> wrote in message news:Xns96635F84E6901duncanbooth@xxxxxxxxxxxx
Dennis Lee Bieber wrote:
That isn't a good argument for case sensitivity. You really aren't going toOn 26 May 2005 17:33:33 -0700, "Elliot Temple" <curi42@xxxxxxxxx> declaimed the following in comp.lang.python:
Thanks for the link on case sensitivity. I'm curious about the person who found case sensitivity useful though: what is it useful for?
Making a language run faster on slow machines since the syntax parsing doesn't have to do the equivalent of upper or lower casing anything that is not a string literal before checking for keywords or identifiers.
Consider the time spent by languages like Ada and Fortran when they have to do case normalization every time you compile.
be able to measure a slowdown in compilation speed just because the
compiler has to lowercase all the identifiers before using them.
Actually it is, but you have to get out of ASCII into the wider world of all of the real languages out there. Something I heard from one of the people who invented XML is that it originally started out as case insensitive, and they had quite an extensive discussion about it. When they made it case sensitive, one of the basic tools sped up by a factor of three. Doing case translations in Unicode following all of the rules for all of the world's languages is, for want of a better world, a real bitch.
John Roth
.
- Follow-Ups:
- Re: Case Sensitive, Multiline Comments
- From: Duncan Booth
- Re: Case Sensitive, Multiline Comments
- References:
- Case Sensitive, Multiline Comments
- From: Elliot Temple
- Re: Case Sensitive, Multiline Comments
- From: Mike Meyer
- Re: Case Sensitive, Multiline Comments
- From: John Machin
- Re: Case Sensitive, Multiline Comments
- From: Elliot Temple
- Re: Case Sensitive, Multiline Comments
- From: Duncan Booth
- Case Sensitive, Multiline Comments
- Prev by Date: Re: Strings for a newbie
- Next by Date: Re: write to the same file from multiple processes at the same time?
- Previous by thread: Re: Case Sensitive, Multiline Comments
- Next by thread: Re: Case Sensitive, Multiline Comments
- Index(es):
Relevant Pages
|