Help for this page

Select Code to Download


  1. or download this
    open(X,"< test");
    undef $/;
    while(<X>) { print "hello" }
    
  2. or download this
    $ARGV[0]="test";
    $^I="";
    undef $/;
    while(<>) { print "hello" }