in reply to Re: RPC
in thread RPC

That claim notwithstanding, try this:
#!/usr/bin/perl -w use strict; my $fh = 'OUT'; open ($fh, "< $0") or die "Cannot read $0: $!"; print <$fh>;
Try replacing some of the $fh's with 'OUT'. Some combinations will work, some will fail. The list that works/fails changes from 5.005 to 5.6.

Caveat programmer.