Help for this page

Select Code to Download


  1. or download this
    perl -MO=Deparse,-p -e 'print "\x{A}"'
    
  2. or download this
    print("\n");
    -e syntax OK
    
  3. or download this
    use warnings;
    use strict;
    
    print ord "\x{A}" if "\x{000A}" eq "\n";
    
  4. or download this
    10