Help for this page
Select Code to Download
Select
or
download this
sub foo { $^O=~/((.*))/; print for @_ }
Select
or
download this
foo("$2") if "foobar"=~/(...)(...)/
Select
or
download this
foo($2) if "foobar"=~/(...)(...)/
Select
or
download this
$ perl -le'$x = "41"; 0+$x; print for ("$x" ^ "3"), ($x ^ "3")' 1 42