Help for this page

Select Code to Download


  1. or download this
    $ perl -MO=Deparse -E '$x = ("a", "b", "c");'
    use feature 'current_sub', 'evalbytes', 'fc', 'say', 'state', 'switch'
    +, 'unicode_strings', 'unicode_eval';
    $x = ('???', '???', 'c');
    -e syntax OK
    
  2. or download this
    $ perl -MO=Deparse -E '$x =()= ("a", "b", "c"); print $x'
    use feature 'current_sub', 'evalbytes', 'fc', 'say', 'state', 'switch'
    +, 'unicode_strings', 'unicode_eval';
    ...
    
    $ perl -E '$x =()= ("a", "b", "c"); print $x'
    3