Help for this page

Select Code to Download


  1. or download this
    $ perl -MO=Deparse -e '$x = anything_could_go_here::'
    $x = 'anything_could_go_here';
    -e syntax OK
    
  2. or download this
    q{}
    ''
    ...
    ::
    qw{}
    - (as in -bareword)
    
  3. or download this
    no strict;
    $x = bareword;
    
  4. or download this
    "" and qq{}
    `` and qx{}