Help for this page

Select Code to Download


  1. or download this
    use strict;
    use warnings;
    use Data::Dumper;        # Add this line
    
  2. or download this
    sub compile{
        $all = $waybox->index('end');
    ...
        printf "TFD> latlong => %s\n", Dumper(\@latlong);
        $go = 1;
    }
    
  3. or download this
    TFD> latlong => $VAR1 = [
              '1 2',
              '3 4'
            ];
    
  4. or download this
    TFD> latlong => $VAR1 = [
              '1 2',
    ...
              '3 4',
              '5 6'
            ];
    
  5. or download this
        if ( $go == 1 ){
            # ...
            @latlong = ( );
        }
    
  6. or download this
        for(;;){
            if( $progress == 0){last}
            # Pause for 1/10th of a second to be a good citizen
            select(undef, undef, undef, 0.1)
        }