Help for this page

Select Code to Download


  1. or download this
    $ perl -le 'my $s = ("111","bbb"); print $s'
    bbb
    ...
    (my $s = ('???', 'bbb'));
    $ perl -MO=Deparse,-p -e 'my $s =  "111","bbb" '
    ((my $s = '111'), '???');
    
  2. or download this
    $ perl -wMstrict -e 'my $s = ("111","222","aaa","bbb")'
    Useless use of a constant ("111") in void context at -e line 1.
    ...
    Useless use of a constant ("222") in void context at -e line 1.
    Useless use of a constant ("aaa") in void context at -e line 1.
    Useless use of a constant ("bbb") in void context at -e line 1.