English name: $PROGRAM_NAME : English « System Functions « Perl






English name: $PROGRAM_NAME

      

#!/usr/bin/perl -w

use English '-no-match-vars';

print 'I am ', $PROGRAM_NAME, ' (', $PROCESS_ID, ')';
#print 'I am ', $0, ' (', $$, ')';

   
    
    
    
    
    
  








Related examples in the same category

1.use English;
2.The English Module