Help for this page

Select Code to Download


  1. or download this
    use strict;
    use warnings;
    
    ...
    {
      close $textfile;
      }
    
  2. or download this
    use strict;
    use warnings;
    print "What is the conference hexidecimal name?\nInput Name:";
    ...
    {
      close $textfile;
      }
    
  3. or download this
    print "What is the Conference IDX?";
    my $num = <>;
    chomp ($num);
    exit unless defined $num;
    $num = oct($num) if $num =~ /^0/; 
    printf = ("%x\n", $num) ;