Test-Numeric - Re: Real Rookie question

Posted on Tue Sep 2 14:57:06 2008 by tillersweep in response to 8678 (See the whole thread of 2)
Re: Real Rookie question
I have tried redirecting STDERR and STDOUT and it still goes to the screen.
#open ( STDOUT, "> nul" ) or die $!; #open ( STDERR, "> nul" ) or die $!; open STDERR, '>nul'; open STDOUT, '>nul'; if ( is_number $this_element ) {... close STDERR; close STDOUT;
It still blasts away on each compare and it proudly declares how many tests it ran.
Write a response