Help for this page

Select Code to Download


  1. or download this
    my $data = get_data();
    process_data($data);
    print_result();
    
  2. or download this
    sub get_data {
      # returns scalar data pointer to my structure
    ...
      return undef;
    }
    ...