- or download this
@matches = "hello awesome" =~ /(el).*(om)/;
print pop @awesome;
- or download this
prototype "CORE::pop"; # => ;\@
- or download this
print ( ( "hello awesome" =~ /(el).*(om)/ )[-1] );
- or download this
Type of arg 1 to pop must be array (not list assignment) at -e line 1,
+ near "/(el).*(om)/)"
- or download this
$ perl -e '( my @a = (1) ) = (2); print "@a\n";'
2