Help for this page

Select Code to Download


  1. or download this
    # ctrl -c to exit (this is only example code!!!)
    while (<>) {
        print "\$_ = <$_>\n";
    }
    
  2. or download this
    # ctrl -c to exit (this is only example code!!!)
    while (<> and 1) {
        print "\$_ = <$_>\n";
    }