in reply to Is Perl less compact than Ruby? (Kind of competition)

Before pulling apart the interpreter, you can at least shave a character off the preamble using the old m// trick:
# Formerly: split//,lc # Revised: lc=~m/./g # Revised revision [mtve]: lc=~/./g
Chalk one up for Perl!

Update: mtve points out the obvious. D'oh!

Replies are listed 'Best First'.
2 bytes from tadman
by locked_user mtve (Deacon) on Feb 18, 2002 at 19:39 UTC
    Thanks! Worked even without m, is it ok?