http://www.perlmonks.org?node_id=309171


in reply to perl grep

=> is a glorified comma. So now we actually have:

grep /regex/, @_; # EXPR , LIST

The regex is an expression. @_ can provide data like a list. And thus it is grep EXPR, LIST.