Help for this page

Select Code to Download


  1. or download this
    while (1) {
      print "Enter a number: ";
    ...
      chomp($Number);
       print "You entered - $Number.\n";
      }
    
  2. or download this
    use POE;
    use POSIX;
    ...
    });
    $poe_kernel->run();
    exit(0);