Help for this page

Select Code to Download


  1. or download this
    Use of uninitialized value in numeric ge (>=) at C:\Users\xxxx\Documen
    +ts\PerlProjects\Monks\node_id=11132441.pl line 31.
    WARNING: $pid{ex1}{val} NOT FOUND!!
    ("ex1", { as => "temp", val => undef })
    
  2. or download this
    $repeat->cancel() if  $pid{ex1}{val} >= 65;  # to the following...
    $repeat->cancel() if  ($pid{ex1}{val} >= 65); 
    and that seems to work better.