Help for this page

Select Code to Download


  1. or download this
    #!/usr/bin/perl
    
    ...
    { 
        print "FOO\n"; 
    }
    
  2. or download this
    FOO
    FOO
    FOO
    
  3. or download this
    eval 
    {
    ...
      }
    };
    print "'$@'";
    
  4. or download this
    #!/usr/bin/perl
    for ($i=0;$i<=5;$i++)
    { 
        print "FOO\n"; 
    }
    
  5. or download this
    #!/usr/bin/perl
    use strict;
    ...
    { 
        print "FOO\n"; 
    }