Help for this page

Select Code to Download


  1. or download this
        # from the command line
        perl d1
    ...
    
        # in the code
        my $arg = hex(shift @ARGV);
    
  2. or download this
        my $arg = chr(hex(shift @ARGV));
    
  3. or download this
        my $arg = chr hex shift;