On Mac OSX, this works fine with perl
perl -v
This is perl, v5.8.9 built for darwin-2level
perl -e 'sub test {}'
But on Solaris
perl -v
This is perl, v5.8.8 built for i86pc-solaris-thread-multi
perl -e 'sub test {}'
Illegal declaration of anonymous subroutine at -e line 1.
Any ideas?
Thanks, Kelly
perl -c -e'sub test {}'(though I don't know why he's asking) – ikegami May 13 '11 at 17:13perl -e'; sub test {}'perl -e'sub test {;}'– ikegami May 13 '11 at 17:16