Help for this page

Select Code to Download


  1. or download this
    perl -E "$,='|'; say  $^X, '-E', 'say for @ARGV', 1, qq(\\\x22), 2"
    C:\Perl\bin\perl.exe|-E|say for @ARGV|1|\"|2
    
  2. or download this
    perl -E "$,='|'; say  $^X, '-E', 'say for @ARGV', 1, qq(\x22), 2"
    C:\Perl\bin\perl.exe|-E|say for @ARGV|1|"|2
    
  3. or download this
    perl -E "say for @ARGV" 1 \" 2
    1
    "
    2
    
  4. or download this
    perl -E "say for @ARGV" 1 " 2
    1
     2