rsFalse has asked for the wisdom of the Perl Monks concerning the following question:
OUTPUT: an empty line.#!/usr/bin/perl -wl use strict; $_ = '--;--;----;'; print +( () = /;/g );
OUTPUT: 3print - -( () = /;/g );
OUTPUT: 3print scalar( () = /;/g ); # or "secret op": print ~~( () = /;/g );
OUTPUT: 2print --( () = /;/g );
|
|---|