Help for this page

Select Code to Download


  1. or download this
    system(
        q{perl},
        q{-lane},
        q{print "John's";},
    );
    
  2. or download this
    print\ \"John\'s\";
    
  3. or download this
    "print \"John's\";"
    
  4. or download this
    'print "John'"'"'s";'
    'print "John'\''s";'
    
  5. or download this
    perl -lane 'print "John'\''s";'
    
  6. or download this
    system(
        q{perl},
        q{-lane}.q{print "John's";},
    );
    
  7. or download this
    perl '-laneprint "John'\''s";'
    
  8. or download this
    perl -lane'print "John'\''s";'