in reply to Re^3: sub will not return data (after data has been returned)
in thread sub will not return data correctly (the way i want it to!!)
push @test_2_data, unpack('H*', (test_2( $test ))) for 1 .. 4; print $_ for(@test_2_data);
push @test_2_data, test_2( $test ) for 1 .. 4; for(@test_2_data){ $_ = unpack('H*', $_); } print $_ for(@test_2_data);
|
|---|