Help for this page

Select Code to Download


  1. or download this
    for my $field_name (qw( bandwidth distance size active )) {
       my $value = $$ref{$field_name};
       print $FH "$field_name, $value\n";
    }
    
  2. or download this
    sub write_file {
        my ($cinfo, $data, $fields) = @_;
    ...
    
    . . .
    write_file($config{'info'}, $ref, [qw(bandwidth distance size active)]
    + );