Help for this page

Select Code to Download


  1. or download this
    #! C:\Perl 
    print "Enter a number:  "; 
    $number = <STDIN>; 
    print "You entered $number";
    
  2. or download this
    use IO::Handle; 
    STDOUT -> autoflush(1);
    STDERR -> autoflush(1);