Help for this page

Select Code to Download


  1. or download this
    open( HANDLE, "<file");
    while( my($line) = <HANDLE> )
    {
       print $line;
    }
    
  2. or download this
    my($var);
    my($othervar) = 43;
    
  3. or download this
    my $var;
    my $othervar = 43;
    
  4. or download this
    my($var1, $var2, $var3);
    
  5. or download this
     "You really probably want to be using `my' instead,
      because `local' isn't what most people think of as
      "local"."