in reply to Syntax Highlighting Editors Beware
Can't say I'm a fan of this change. This could permit some slightly confusing code, like:
Ah, well, I've not been following Perl 6 developments, so I shouldn't be overly critical, but I can also see this as making it less than straightforward to convert a few Perl 5 scripts which rely on regex including the /\w/ or /\W/ meta-characters to Perl 6.# any needed definitions, prototypes, etc... sub bar { return 100; } sub foo { 50;} sub foo-bar { return rand(50); } if (foo - bar != foo-bar) { print "Haha!\n"; }
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^2: Syntax Highlighting Editors Beware
by John M. Dlugosz (Monsignor) on Aug 10, 2008 at 04:34 UTC | |
by swampyankee (Parson) on Aug 11, 2008 at 02:35 UTC | |
by John M. Dlugosz (Monsignor) on Aug 11, 2008 at 03:33 UTC |