open my $fh, "<", "items/list.db"; print while (<$fh>); close $fh;
This is suppose to printout the content in items/list.db , but why I get somthing like "GLOB(0x162aca7)" ?? Thanks in advise.
open my $fh, "<", "items/list.db"; print while (<$fh>); close $fh;
This is suppose to printout the content in items/list.db , but why I get somthing like "GLOB(0x162aca7)" ?? Thanks in advise.