Help for this page

Select Code to Download


  1. or download this
    my $fname = 'data.txt';
    
    ...
    while(FH) {
        print "hello\n";
    }
    
  2. or download this
    
    while(FH) {
        print "hello\n";
    }
    
  3. or download this
    $greeting = Hello . World;
    print $greeting, "\n";           #Prints: HelloWorld