ISHWAR RATTAN <[EMAIL PROTECTED]>: > I am coming back to perl after a long time. > > The sample code these days also uses variable attribute my as: > > my $inst = Extutils::Installed->new(); > my @modules = $inst->modules(); > > Can any demistify 'my' for me??
----------------------------- #!/usr/bin/perl # this just re-implements tail -1 # # usage: # /this/file < /some/text/file.txt # my $last; while( <> ) { $last = $_; } print $last; ----------------------------- Now, try with the "my $last;" *inside* the while(). That last print line won't have a clue what $last is. -- Any technology distinguishable from magic is insufficiently advanced. (*) http://blinkynet.net/comp/uip5.html Linux Counter #80292 - - http://www.faqs.org/rfcs/rfc1855.html Please, don't Cc: me. -- To UNSUBSCRIBE, email to [EMAIL PROTECTED] with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]