Help for this page

Select Code to Download


  1. or download this
    print "Enter the output file you would like to analyze: ";
    chomp (my $filename = <STDIN>);
    print "Enter the isotope you want to extract (ex: Am-241): ";
    chomp (my $iso= <STDIN>);
    
  2. or download this
    # Validate parameters
    @ARGV == 2 or error ("Too few parameters");
    ...
    
        exit -1;
    }