- or download this
perl -e 'use P;
my $x=27;
...
P $y,"through STDOUT=%s", $x'
27
through STDOUT=27
- or download this
P $x
#and
P STDOUT $x #without the comma
- or download this
# perl -e 'use P;
P \*STDOUT, "Input was: %s", \*STDIN;
...
my input
Input was: <*=my input
>