Why doesn't Perl support the normal [] operator to index a string? Almost all major programming languages support this operator,esp the other two 'P': python and php.Moreover,I do think it should be easy to implementate this little syntax.Also,as the philosophy of the perl programming language -- as lazy as we could,so why do we bother to use function to index string?
Will Perl 6 support this syntax?
thanks.
[]. Not only that but[]may or may not be implemented as a function despite it's syntax (for example, in Ruby[]is actually a method). – rfunduk Nov 2 '09 at 19:26$$. No one complains that Haskell doesn't use[]for that purpose...) – Daniel Pryden Nov 2 '09 at 22:41!!. For further examples: SML usesString.sub, Caml usesString.get(or.[]), J uses{~, XSLT usessubstring, and Java uses.charAt(). – ephemient Nov 3 '09 at 1:32