Help for this page
package Test; $testing = 'TEST'; @test_array = (qw/OneTest TwoTest/); ... print "\@$symname is nonnull\n" if @sym; print "\%$symname is nonnull\n" if %sym; }
package Test; $testing = 'TEST'; @test_array = (qw/OneTest TwoTest/); ... if (@sym) {@sym = undef; print "\@$symname is cleared\n" } +; if (%sym) {%sym = undef; print "\%$symname is cleared\n" } +; }