Help for this page

Select Code to Download


  1. or download this
         #!/usr/bin/perl
            print "Line [ ", __LINE__, " ] looks very nice\n";
            print "Line [  __LINE__ ] is taken as a string-literal\n";
           #print "Line [ @{[__LINE__}] is a syntax error\n";
    
  2. or download this
         Line [ 2 ] looks very nice.
         Line [  __LINE__ ] is taken as a string-literal.