- or download this
perl -MO=Deparse,-p
print $x= "hi";
chomp $x= "hi";
...
unlink(($x = 'hi'));
die(($x = 'hi'));
warn(($x = 'hi'));
- or download this
left terms and list operators (leftward)
[...]
...
[...]
=head2 Terms and List Operators (Leftward)
[...]
- or download this
[...]
=head2 List Operators (Rightward)
- or download this
chomp( @x )= whatever; - or download this
chop( $x )= whatever;
chop( @x )= whatever;
chomp( $x )= whatever;
- or download this
chomp my @input= <STDIN>;