- or download this
use strict;
use warnings;
use Data::Dumper; # Add this line
- or download this
sub compile{
$all = $waybox->index('end');
...
printf "TFD> latlong => %s\n", Dumper(\@latlong);
$go = 1;
}
- or download this
TFD> latlong => $VAR1 = [
'1 2',
'3 4'
];
- or download this
TFD> latlong => $VAR1 = [
'1 2',
...
'3 4',
'5 6'
];
- or download this
if ( $go == 1 ){
# ...
@latlong = ( );
}
- 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)
}