- or download this
#!/usr/bin/perl
use warnings;
...
#My First Reference called ref1.pl!!
my $array = [`DIR`];
print "@{$array}\n";
- or download this
C:\perl\practice>perl -d ref1.pl
...
6: print "@{$array}\n";
DB<1> s
- or download this
main::(ref1.pl:6): print "@{$array}\n";
...
DB<1> q
C:\perl\practice>